You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title: "Introducing the Appwrite plugin for Claude Code: Skills and MCP servers in one install"
4
+
description: The Appwrite plugin for Claude Code bundles agent skills and MCP servers into a single install, so your Claude Code agent can build with Appwrite out of the box.
Claude Code is built around a specific workflow: a terminal-resident agent that reads, writes, and runs code against your project. Using it with Appwrite has worked for a while, but getting there meant hand-registering MCP servers with `claude mcp add-json`, pasting your project credentials into a JSON payload, and relying on whatever SDK knowledge the underlying model was trained on.
14
+
15
+
Today, we are announcing the **Appwrite plugin for Claude Code**. Two commands and your agent is set up to build with Appwrite using up-to-date SDK patterns and live access to your project.
16
+
17
+
# What installing the plugin gives you
18
+
19
+
The plugin ships three things in a single install:
20
+
21
+
- **The Appwrite API MCP server:** Pre-registered with Claude Code. You configure your endpoint, project ID, and API key through the plugins menu instead of a JSON payload.
22
+
- **The Appwrite Docs MCP server:** No credentials required. Your agent can look up Appwrite's current documentation as it works, rather than relying on what the model was trained on.
23
+
- **Eleven agent skills:** Written as Markdown files for the Appwrite CLI and every major Appwrite SDK: TypeScript, Dart, .NET, Go, Kotlin, PHP, Python, Ruby, Rust, and Swift. Claude Code loads the relevant skill on its own when a task calls for it.
24
+
25
+
# Setup the plugin
26
+
27
+
In your terminal, run:
28
+
29
+
```bash
30
+
claude plugins marketplace add appwrite/claude-plugin
31
+
claude plugins install appwrite@appwrite
32
+
```
33
+
34
+
Then run Claude Code, enter `/plugins`, move to the **Installed** tab, open **Appwrite**, and select **Configure options**. Enter your endpoint, project ID, and API key. Run `/reload-plugins` to apply the changes to your current session.
35
+
36
+
# A prompt to try first
37
+
38
+
Once the plugin is active, try a prompt like:
39
+
40
+
`Create a new user in my Appwrite project with the email abc@example.com.`
41
+
42
+
The agent uses the API MCP server to create the user in your project directly, with no code written on your side.
The Appwrite plugin is now available for Claude Code. Install it to get agent skills for the Appwrite CLI and every major SDK, along with MCP servers for the Appwrite API and documentation, all in a single setup.
Copy file name to clipboardExpand all lines: src/routes/docs/tooling/ai/ai-dev-tools/claude-code/+page.markdoc
+43-6Lines changed: 43 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,45 @@
1
1
---
2
2
layout: article
3
3
title: Claude Code
4
-
description: Learn how you can use Claude Code with Appwrite using quick start prompts for common integrations and MCP servers to interact with both the Appwrite API and documentation.
4
+
description: Learn how to use Claude Code with Appwrite through the Appwrite plugin, quick start prompts, and MCP servers for AI-assisted development.
{% section #install-plugin step=1 title="Install the Appwrite plugin" %}
8
+
9
+
The fastest way to get started with Appwrite in Claude Code is to install the **Appwrite plugin** from the Appwrite marketplace. The plugin includes agent skills for the CLI and all major SDKs and sets up MCP servers for both the Appwrite API and documentation, giving Claude Code everything it needs to work with your Appwrite projects.
10
+
11
+
To install the plugin, run the following commands in your terminal:
12
+
13
+
```bash
14
+
# Add the marketplace
15
+
claude plugins marketplace add appwrite/claude-plugin
16
+
17
+
# Install the plugin
18
+
claude plugins install appwrite@appwrite
19
+
20
+
```
21
+
22
+
Once installed, run Claude Code and configure the plugin:
23
+
24
+
- Run `/plugins` in Claude Code.
25
+
- Go to the **Installed** tab.
26
+
- Select the **Appwrite** plugin from the list.
27
+
- Choose **Configure options**.
28
+
- Enter your Appwrite endpoint, project ID, and API key when prompted.
29
+
30
+

31
+
32
+
After saving the configuration, run `/reload-plugins` to apply the changes to your current session. The `appwrite-api` MCP server will be ready alongside the agent skills, and Claude Code can now interact with your Appwrite project.
33
+
34
+
{% info title="Prefer manual setup?" %}
35
+
36
+
If you'd rather configure MCP servers individually, skip to [Step 3](#step-3).
0 commit comments