-
Notifications
You must be signed in to change notification settings - Fork 318
Feat claude plugin #2903
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat claude plugin #2903
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| --- | ||
| layout: post | ||
| title: "Introducing the Appwrite plugin for Claude Code: Skills and MCP servers in one install" | ||
| 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. | ||
| date: 2026-04-20 | ||
| cover: /images/blog/announcing-appwrite-claude-code-plugin/cover.png | ||
| timeToRead: 4 | ||
| author: atharva | ||
| category: announcement | ||
| featured: false | ||
| --- | ||
|
|
||
| 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. | ||
|
|
||
| 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. | ||
|
|
||
| # What installing the plugin gives you | ||
|
|
||
| The plugin ships three things in a single install: | ||
|
|
||
| - **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. | ||
| - **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. | ||
| - **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. | ||
|
|
||
| # Setup the plugin | ||
|
|
||
| In your terminal, run: | ||
|
|
||
| ```bash | ||
| claude plugins marketplace add appwrite/claude-plugin | ||
| claude plugins install appwrite@appwrite | ||
| ``` | ||
|
|
||
| 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. | ||
|
|
||
| # A prompt to try first | ||
|
|
||
| Once the plugin is active, try a prompt like: | ||
|
|
||
| `Create a new user in my Appwrite project with the email abc@example.com.` | ||
|
|
||
| The agent uses the API MCP server to create the user in your project directly, with no code written on your side. | ||
|
|
||
| # Resources | ||
|
|
||
| - [Claude Code plugin docs](/docs/tooling/ai/ai-dev-tools/claude-code) | ||
| - [Plugin source code on GitHub](https://github.com/appwrite/claude-plugin) | ||
| - [Appwrite Skills](/docs/tooling/ai/skills) | ||
| - [Discord community](https://appwrite.io/discord) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| --- | ||
| layout: changelog | ||
| title: "Appwrite plugin for Claude Code" | ||
| date: 2026-04-20 | ||
| cover: /images/blog/announcing-appwrite-claude-code-plugin/cover.png | ||
| --- | ||
|
|
||
| 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. | ||
|
|
||
| {% arrow_link href="/blog/post/announcing-appwrite-claude-code-plugin" %} | ||
| Read the announcement | ||
| {% /arrow_link %} |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,45 @@ | ||
| --- | ||
| layout: article | ||
| title: Claude Code | ||
| 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. | ||
| description: Learn how to use Claude Code with Appwrite through the Appwrite plugin, quick start prompts, and MCP servers for AI-assisted development. | ||
| --- | ||
|
|
||
| {% section #quick-start-prompts step=1 title="Quick start prompts" %} | ||
| {% section #install-plugin step=1 title="Install the Appwrite plugin" %} | ||
|
|
||
| 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. | ||
|
|
||
| To install the plugin, run the following commands in your terminal: | ||
|
|
||
| ```bash | ||
| # Add the marketplace | ||
| claude plugins marketplace add appwrite/claude-plugin | ||
|
|
||
| # Install the plugin | ||
| claude plugins install appwrite@appwrite | ||
|
|
||
| ``` | ||
|
|
||
| Once installed, run Claude Code and configure the plugin: | ||
|
|
||
| - Run `/plugins` in Claude Code. | ||
| - Go to the **Installed** tab. | ||
| - Select the **Appwrite** plugin from the list. | ||
| - Choose **Configure options**. | ||
| - Enter your Appwrite endpoint, project ID, and API key when prompted. | ||
|
|
||
|  | ||
|
|
||
| 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. | ||
|
|
||
| {% info title="Prefer manual setup?" %} | ||
|
|
||
| If you'd rather configure MCP servers individually, skip to [Step 3](#step-3). | ||
|
|
||
| {% /info %} | ||
|
|
||
| {% /section %} | ||
|
|
||
| {% section #quick-start-prompts step=2 title="Quick start prompts" %} | ||
|
|
||
| Get started quickly with these pre-built prompts for common Appwrite integrations: | ||
|
|
||
|
|
@@ -21,7 +56,9 @@ Browse all quick start prompts | |
|
|
||
| {% /section %} | ||
|
|
||
| {% section #step-2 step=2 title="Add MCP servers" %} | ||
| {% section #step-3 step=3 title="Add MCP servers manually" %} | ||
|
|
||
| If you installed the Appwrite plugin in [Step 1](#install-plugin), MCP servers are already configured and you can skip to [Step 4](#step-4). | ||
|
Comment on lines
+59
to
+61
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The section IDs |
||
|
|
||
| Connect Appwrite MCP servers to Claude Code for deeper integration with the Appwrite API and documentation. | ||
|
|
||
|
|
@@ -65,7 +102,7 @@ claude mcp add appwrite-docs <https://mcp-for-docs.appwrite.io> -t http | |
|
|
||
| {% /section %} | ||
|
|
||
| {% section #step-3 step=3 title="Verify MCP tools" %} | ||
| {% section #step-4 step=4 title="Verify MCP tools" %} | ||
|
|
||
| Run the following command in your terminal (where Claude Code is running). | ||
|
|
||
|
|
@@ -80,7 +117,7 @@ You should see the added MCP servers listed there. | |
|
|
||
| {% /section %} | ||
|
|
||
| {% section #step-4 step=4 title="Test the integration" %} | ||
| {% section #step-5 step=5 title="Test the integration" %} | ||
|
|
||
| Try out the following example prompts based on the MCP server you have configured: | ||
|
|
||
|
|
@@ -113,4 +150,4 @@ Try out the following example prompts based on the MCP server you have configure | |
|
|
||
|  | ||
|
|
||
| {% /section %} | ||
| {% /section %} | ||
Uh oh!
There was an error while loading. Please reload this page.