Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions extensions/model-context-protocol-registry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Model Context Protocol Registry Changelog

## [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.

## [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.
Expand Down
1 change: 1 addition & 0 deletions extensions/model-context-protocol-registry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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[] = [
Expand Down