Docs
Skip to content

Tooling

Claude Desktop_

Learn how to use Claude Desktop with Appwrite through quick start prompts and the Appwrite MCP server for AI-assisted development.

2 min read

Raw

1. Quick start prompts

Get started quickly with these pre-built prompts for common Appwrite integrations:

2. Add the MCP server

Connect the Appwrite MCP server to Claude Desktop for deeper integration with the Appwrite API and documentation.

Before you begin, ensure you have Node.js and npm installed on your system.

Unlike other IDEs, Claude Desktop only supports local (stdio) MCP servers and not remote servers. The mcp-remote package acts as a proxy to connect to the remote Appwrite MCP server.

In the Claude Desktop app, open the app's Settings page (press CTRL + , on Windows or CMD + , on MacOS) and head to the Developer tab.

Claude Settings
Claude Settings

Clicking on the Edit Config button will take you to the claude_desktop_config.json file. In case the file is missing, please visit the Model Context Protocol docs.

Add the Appwrite MCP server to your configuration:

JSON
{
"mcpServers": {
"appwrite": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.appwrite.io/"
]
}
}
}

The server uses OAuth for authentication. When Claude Desktop first connects to the server, your browser opens so you can sign in to your Appwrite account and authorize access.

3. Verify MCP tools

Restart the Claude Desktop app, click on the MCP tools button (at the bottom right section of the prompt input) and click on it to view available Appwrite MCP tools.

Appwrite MCP tools
Appwrite MCP tools

4. Test the integration

Try out the following example prompts:

Example prompts:

  • Create a new user in my Appwrite project
  • List all databases in my project
  • Show me the tables in my database
  • How do I set up real-time subscriptions in Appwrite?
  • Show me how to authenticate users with OAuth
  • How do I implement file uploads with Appwrite Storage?

List users in Appwrite project
List users in Appwrite project

Was this page helpful?

Share what worked or what we should fix. Once approved, our agents automatically apply suggested updates to the docs.