From fac7ecb3f7bbb5b9e8e9f27c6799af66689236c9 Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Mon, 13 Jul 2026 08:04:10 +0530 Subject: [PATCH 1/2] Add Appwrite MCP server to registry --- .../model-context-protocol-registry/CHANGELOG.md | 4 ++++ extensions/model-context-protocol-registry/README.md | 1 + .../src/registries/builtin/entries.ts | 12 ++++++++++++ 3 files changed, 17 insertions(+) diff --git a/extensions/model-context-protocol-registry/CHANGELOG.md b/extensions/model-context-protocol-registry/CHANGELOG.md index 9a9d7221ec6..eb373d7eea8 100644 --- a/extensions/model-context-protocol-registry/CHANGELOG.md +++ b/extensions/model-context-protocol-registry/CHANGELOG.md @@ -1,5 +1,9 @@ # Model Context Protocol Registry Changelog +## [Add Appwrite MCP Server] - {PR_MERGE_DATE} + +Add the official Appwrite MCP server to the registry, enabling AI assistants to securely inspect and manage Appwrite projects and resources through Appwrite's API using OAuth authentication. + ## [Add Nika MCP Server] - 2026-07-12 Add Nika to the community registry — a workflow language for AI (one file, four verbs, one Rust binary). Its MCP server is a read-only oracle: agents validate .nika.yaml workflows (nika_check, nika_explain) and learn the language (schema, templates, examples, catalogs) without executing anything; execution stays on the CLI, budget-capped and trace-verified. Local binary via Homebrew/cargo-binstall/Nix; no env vars, no API key. diff --git a/extensions/model-context-protocol-registry/README.md b/extensions/model-context-protocol-registry/README.md index 7e026c0b78a..e98444fbaea 100644 --- a/extensions/model-context-protocol-registry/README.md +++ b/extensions/model-context-protocol-registry/README.md @@ -77,6 +77,7 @@ To add a new MCP registry to the registry, you need to create a new entry in the | [RouteMesh](https://github.com/routemesh/routemesh-mcp) | Query multiple EVM blockchain chains from one MCP server. Pull on-chain data including blocks, transactions, logs, balances, and fees with RouteMesh routing and failover. | | [Jellypod](https://www.jellypod.com/mcp) | Jellypod's Model Context Protocol server lets AI assistants create, edit, and publish conversational AI podcasts and video episodes. | | [plori](https://plori.ai/mcp) | Give your AI agent its own cloud computer. plori hosts agents on persistent machines with a real disk, tools, and memory that survives between sessions; idle agents scale to zero. This server creates and drives those agents: invoke an agent and read its reply, answer human-in-the-loop questions, and schedule deferred runs. Sign-in happens in the browser on first use (OAuth), or use an API key for headless setups. | +| [Appwrite](https://github.com/appwrite/mcp) | The official Appwrite MCP server lets AI assistants securely inspect and manage Appwrite projects and resources through Appwrite's API. | ### Community MCP Servers diff --git a/extensions/model-context-protocol-registry/src/registries/builtin/entries.ts b/extensions/model-context-protocol-registry/src/registries/builtin/entries.ts index b4b33ea305d..86394d203a0 100644 --- a/extensions/model-context-protocol-registry/src/registries/builtin/entries.ts +++ b/extensions/model-context-protocol-registry/src/registries/builtin/entries.ts @@ -727,6 +727,18 @@ export const OFFICIAL_ENTRIES: RegistryEntry[] = [ args: ["-y", "mcp-remote", "https://api.plori.ai/mcp"], }, }, + { + name: "appwrite", + title: "Appwrite", + description: + "The official Appwrite MCP server lets AI assistants securely inspect and manage Appwrite projects and resources through Appwrite's API.", + icon: "https://mcp.appwrite.io/favicon.svg", + homepage: "https://github.com/appwrite/mcp", + configuration: { + command: "npx", + args: ["-y", "mcp-remote", "https://mcp.appwrite.io/"], + }, + }, ]; export const COMMUNITY_ENTRIES: RegistryEntry[] = [ From 4682ecb52b06110954992aac7bc5e24079e9ac45 Mon Sep 17 00:00:00 2001 From: raycastbot Date: Mon, 13 Jul 2026 04:28:47 +0000 Subject: [PATCH 2/2] Update CHANGELOG.md --- extensions/model-context-protocol-registry/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/model-context-protocol-registry/CHANGELOG.md b/extensions/model-context-protocol-registry/CHANGELOG.md index eb373d7eea8..e2f2b0c9c48 100644 --- a/extensions/model-context-protocol-registry/CHANGELOG.md +++ b/extensions/model-context-protocol-registry/CHANGELOG.md @@ -1,6 +1,6 @@ # Model Context Protocol Registry Changelog -## [Add Appwrite MCP Server] - {PR_MERGE_DATE} +## [Add Appwrite MCP Server] - 2026-07-13 Add the official Appwrite MCP server to the registry, enabling AI assistants to securely inspect and manage Appwrite projects and resources through Appwrite's API using OAuth authentication.