Get started quickly with these pre-built prompts for common Appwrite integrations:
Browse all quick start prompts
Connect Appwrite MCP servers to Zed for deeper integration with the Appwrite API and documentation.
Before you begin, ensure you have the following pre-requisites installed on your system:
uv must be installed on your system.
No additional prerequisites. The docs server runs as a remote HTTP endpoint.
In Zed, open the Command Palette (press CMD + Shift + P on MacOS or CTRL + Shift + P on Linux), run the agent: add context server action, and choose which MCP server you want to configure:
In the Local tab, update the JSON configuration to include the API server:
{
"appwrite-api": {
"command": "uvx",
"args": [
"mcp-server-appwrite"
],
"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.,nyc,fra)
In the Remote tab, update the JSON configuration to include the docs server:
{
"appwrite-docs": {
"url": "https://mcp-for-docs.appwrite.io"
}
}
Click Add Server after adding each configuration. You can also review the configured servers in the Model Context Protocol (MCP) Servers section of Zed's Agent settings.
Install Appwrite skills to give Zed's agent SDK-specific knowledge about Appwrite.
Run the following command in your project directory:
npx skills add appwrite/agent-skills
When prompted:
- Select the Appwrite skills that match the SDKs you use in your project.
- Select Zed as one of the AI tools that should use the installed skills.
- Choose whether to install the skills at the project level or globally.
- Select symlink as the installation method.
Zed loads skills from ~/.agents/skills/ for global installs and <worktree>/.agents/skills/ for project-local installs. Each skill must be a direct child of the skills folder and include a SKILL.md file.
Open the Agent panel in Zed and test your MCP integrations. You can try out the following example prompts based on the MCP server you have configured:
Example prompts:
Create a new user in my Appwrite projectList all databases in my projectShow me the tables in my databaseCreate a new row in my tableDelete 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