{"id":26090488,"url":"https://github.com/appwrite/mcp","last_synced_at":"2026-06-25T00:00:21.753Z","repository":{"id":279475448,"uuid":"938939797","full_name":"appwrite/mcp","owner":"appwrite","description":"Appwrite’s MCP server. Operating your backend has never been easier.","archived":false,"fork":false,"pushed_at":"2026-06-23T10:45:47.000Z","size":2005,"stargazers_count":69,"open_issues_count":6,"forks_count":17,"subscribers_count":8,"default_branch":"main","last_synced_at":"2026-06-23T12:52:31.574Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://appwrite.io/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/appwrite.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-25T18:29:38.000Z","updated_at":"2026-06-23T10:00:17.000Z","dependencies_parsed_at":"2025-02-25T19:34:44.947Z","dependency_job_id":"ee097bd9-4302-48e1-85d1-15deb2839691","html_url":"https://github.com/appwrite/mcp","commit_stats":null,"previous_names":["christyjacob4/mcp-server-appwrite","christyjacob4/mcp","appwrite/mcp","appwrite/mcp-for-api"],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/appwrite/mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appwrite%2Fmcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appwrite%2Fmcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appwrite%2Fmcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appwrite%2Fmcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/appwrite","download_url":"https://codeload.github.com/appwrite/mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appwrite%2Fmcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34753781,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-24T02:00:07.484Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-09T09:34:21.258Z","updated_at":"2026-06-25T00:00:21.728Z","avatar_url":"https://github.com/appwrite.png","language":"Python","funding_links":[],"categories":["Databases","Cloud Services"],"sub_categories":["How to Submit"],"readme":"# Appwrite MCP server\n\nmcp-name: io.github.appwrite/mcp\n\nA [Model Context Protocol](https://modelcontextprotocol.io) server for Appwrite.\nIt exposes Appwrite's API — databases, users, functions, teams, storage, and more\n— as tools your MCP client can call.\n\nConnect to the hosted server at **`https://mcp.appwrite.io/mcp`** and authenticate\nthrough your browser. The first time you connect, your client opens an Appwrite\nconsent screen; approve the scopes and you're connected. There are no keys to\ncopy.\n\n## Connect your client\n\nPick your client below. Each adds the hosted Appwrite Cloud server.\n\n\u003cdetails open\u003e\n\u003csummary\u003e\u003cb\u003eClaude Code\u003c/b\u003e\u003c/summary\u003e\n\n```bash\nclaude mcp add --transport http appwrite https://mcp.appwrite.io/mcp\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cb\u003eClaude Desktop\u003c/b\u003e\u003c/summary\u003e\n\nGo to **Settings → Connectors → Add custom connector** and paste\n`https://mcp.appwrite.io/mcp`.\n\nOn the free plan, bridge the remote server through stdio instead (requires\nNode.js) by editing your config via **Settings → Developer → Edit Config**:\n\n```json\n{\n  \"mcpServers\": {\n    \"appwrite\": {\n      \"command\": \"npx\",\n      \"args\": [\"mcp-remote\", \"https://mcp.appwrite.io/mcp\"]\n    }\n  }\n}\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cb\u003eCursor\u003c/b\u003e\u003c/summary\u003e\n\nEdit `~/.cursor/mcp.json` (global) or `.cursor/mcp.json` (project).\n\n```json\n{\n  \"mcpServers\": {\n    \"appwrite\": {\n      \"url\": \"https://mcp.appwrite.io/mcp\"\n    }\n  }\n}\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cb\u003eVS Code\u003c/b\u003e (GitHub Copilot)\u003c/summary\u003e\n\nEdit `.vscode/mcp.json` (workspace) or your user configuration via the Command\nPalette → **MCP: Open User Configuration**.\n\n```json\n{\n  \"servers\": {\n    \"appwrite\": {\n      \"type\": \"http\",\n      \"url\": \"https://mcp.appwrite.io/mcp\"\n    }\n  }\n}\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cb\u003eCodex\u003c/b\u003e\u003c/summary\u003e\n\nEdit `~/.codex/config.toml`.\n\n```toml\n[mcp_servers.appwrite]\nurl = \"https://mcp.appwrite.io/mcp\"\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cb\u003eOpenCode\u003c/b\u003e\u003c/summary\u003e\n\nEdit `opencode.json` (project) or `~/.config/opencode/opencode.json` (global).\n\n```json\n{\n  \"$schema\": \"https://opencode.ai/config.json\",\n  \"mcp\": {\n    \"appwrite\": {\n      \"type\": \"remote\",\n      \"url\": \"https://mcp.appwrite.io/mcp\",\n      \"enabled\": true\n    }\n  }\n}\n```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cb\u003eWindsurf\u003c/b\u003e\u003c/summary\u003e\n\nEdit `~/.codeium/windsurf/mcp_config.json`.\n\n```json\n{\n  \"mcpServers\": {\n    \"appwrite\": {\n      \"serverUrl\": \"https://mcp.appwrite.io/mcp\"\n    }\n  }\n}\n```\n\n\u003c/details\u003e\n\n## Self-hosted Appwrite\n\nRunning your own Appwrite instance? Run the MCP server locally over `stdio` and\nauthenticate with a project API key. See [docs/self-hosted.md](docs/self-hosted.md)\nfor per-client setup.\n\n## Documentation\n\n- [Tool surface](docs/tool-surface.md) — the tools exposed to the model and the\n  internal Appwrite catalog.\n- [How Cloud authentication works](docs/authentication.md) — the OAuth 2.1 flow.\n- [Documentation search](docs/documentation-search.md) — the in-process\n  `appwrite_search_docs` tool and how to rebuild its index.\n- [Self-hosted Appwrite](docs/self-hosted.md) — run the server locally with a\n  project API key.\n- [Local development](docs/development.md) — running, testing, and debugging the\n  server locally.\n- [AGENTS.md](AGENTS.md) — full contributor guide and pre-PR checklist.\n\n## License\n\nThis MCP server is licensed under the MIT License. See the [LICENSE](LICENSE) file\nfor details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fappwrite%2Fmcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fappwrite%2Fmcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fappwrite%2Fmcp/lists"}