To connect Appwrite MCP servers to Emergent:
- On the homepage, click Advanced Controls.
- Click Select MCP Tools.
- Click New MCP Server.
- Enter a name for your server (e.g.,
appwriteorappwrite-docs). - Paste one of the following JSON configurations:
JSON
{
"mcpServers": {
"appwrite-api": {
"command": "uvx",
"args": [
"mcp-server-appwrite",
"--users"
],
"env": {
"APPWRITE_PROJECT_ID": "your-project-id",
"APPWRITE_API_KEY": "your-api-key",
"APPWRITE_ENDPOINT": "https://<REGION>.cloud.appwrite.io/v1"
}
}
}
}
Configuration:
- Replace
your-project-idwith your actual Appwrite project ID - Replace
your-api-keywith your Appwrite API key - Replace
<REGION>with your Appwrite Cloud region (e.g.,fra,nyc)
JSON
{
"mcpServers": {
"appwrite-docs": {
"command": "npx",
"args": [
"mcp-remote",
"<https://mcp-for-docs.appwrite.io>"
]
}
}
}
Enable other API MCP tools
To enable additional API tools, learn more about command-line arguments.
Once connected, you can use natural language to interact with Appwrite. Try prompts like:
Example prompts:
Create a new user in my Appwrite projectList all databases in my projectShow me the collections in my databaseCreate a new document in my collectionDelete a specific user by ID
Example prompts:
How do I set up real-time subscriptions in Appwrite?Show me how to authenticate users with OAuthWhat are the best practices for database queries?How do I implement file uploads with Appwrite Storage?Show me an example of using Appwrite Functions