pypi mcp-server-appwritestreamable-httpMITupdated 7d ago
A Model Context Protocol server for Appwrite. It exposes Appwrite's API — databases, users, functions, teams, storage, and more — as tools your MCP client can call.
appwrite 能做什么?
Appwrite MCP server
A Model Context Protocol server for Appwrite. It exposes Appwrite's API — databases, users, functions, teams, storage, and more — as tools your MCP client can call.
Connect to the hosted server at https://mcp.appwrite.io/ and authenticate
through your browser. The first time you connect, your client opens an Appwrite
consent screen; approve the scopes and you're connected. There are no keys to
copy. The conventional https://mcp.appwrite.io/mcp URL is also supported and
connects to the same server.

Connect your client
Pick your client below. Each adds the hosted Appwrite Cloud server.
claude mcp add --transport http appwrite https://mcp.appwrite.io/
Then, inside a Claude Code session, run /mcp, select appwrite, and follow
the browser prompt to authenticate.
Go to Settings → Connectors → Add custom connector and paste
https://mcp.appwrite.io/. Available on Pro and Max plans; on Team and
Enterprise plans only an organization Owner can add custom connectors.
If you don't see that option (free plan, or a Team/Enterprise member), bridge the remote server through stdio instead (requires Node.js). Go to Settings → Developer → Local MCP servers, click Edit Config, and add:
{
"mcpServers": {
"appwrite": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.appwrite.io/"]
}
}
}
Restart Claude Desktop; the server appears under Local MCP servers and a browser window opens to authenticate.

Edit ~/.cursor/mcp.json (global) or .cursor/mcp.json (project).
{
"mcpServers": {
"appwrite": {
"url": "https://mcp.appwrite.io/"
}
}
}
Cursor prompts you to log in through the browser; the server then shows up under Settings → MCP with its tools enabled.

Edit .vscode/mcp.json (workspace) or your user configuration via the Command
Palette → MCP: Open User Configuration.
{
"servers": {
"appwrite": {
"type": "http",
"url": "https://mcp.appwrite.io/"
}
}
}
Edit ~/.codex/config.toml.
[mcp_servers.appwrite]
url = "https://mcp.appwrite.io/"
Then authenticate from the terminal:
codex mcp login appwrite
In the Codex GUI, you can instead add the server from the MCP settings —
set the URL to https://mcp.appwrite.io/ and leave the token and header
fields empty (authentication happens through the browser):

Edit opencode.json (project) or ~/.config/opencode/opencode.json (global).
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"appwrite": {
"type": "remote",
"url": "https://mcp.appwrite.io/",
"enabled": true
}
}
}
Edit ~/.codeium/windsurf/mcp_config.json.
{
"mcpServers": {
"appwrite": {
"serverUrl": "https://mcp.appwrite.io/"
}
}
}
gemini mcp add --transport http appwrite https://mcp.appwrite.io/
Or edit ~/.gemini/settings.json (note the key is httpUrl, not url):
{
"mcpServers": {
"appwrite": {
"httpUrl": "https://mcp.appwrite.io/"
}
}
}
Gemini CLI opens the browser OAuth flow automatically on first connect. To
re-authenticate, run /mcp auth appwrite inside a session.
Edit ~/.gemini/config/mcp_config.json (global) or .agents/mcp_config.json (project workspace).
{
"mcpServers": {
"appwrite": {
"serverUrl": "https://mcp.appwrite.io/"
}
}
}
⚠️ Note: Antigravity strictly requires the
serverUrlkey for remote transport. Using legacy fields likeurlorhttpUrlwill cause tool registration to fail silently.
Antigravity opens the browser OAuth flow automatically on first connect. If you manually edit the JSON file, navigate to Settings → Customizations → Installed MCP Servers and click Refresh to reload the tool definitions.
copilot mcp add --transport http appwrite https://mcp.appwrite.io/
Or run /mcp add inside a session, or edit ~/.copilot/mcp-config.json:
{
"mcpServers": {
"appwrite": {
"type": "http",
"url": "https://mcp.appwrite.io/"
}
}
}
A browser window opens to authenticate on first connect. Check status with
/mcp.
Go to Settings → AI → MCP Servers → Add Server → Add Remote Server, or add
to your settings.json (zed: open settings):
{
"context_servers": {
"appwrite": {
"url": "https://mcp.appwrite.io/"
}
}
}
Zed prompts you to authenticate through the browser on first connect.
Go to Settings → Agents → MCP servers → + Add, choose the URL-based
server type, and enter https://mcp.appwrite.io/.
Warp opens a browser window to authenticate on first connect.
JetBrains IDEs don't yet support OAuth for remote MCP servers, so bridge through stdio (requires Node.js). Go to Settings → Tools → AI Assistant → Model Context Protocol (MCP) → Add, switch to the JSON view, and paste:
{
"mcpServers": {
"appwrite": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.appwrite.io/"]
}
}
}
A browser window opens to authenticate on first connect.
Cline doesn't yet support OAuth for remote MCP servers, so bridge through stdio (requires Node.js). In the Cline panel, open the MCP Servers icon → Configure tab → Configure MCP Servers, and add:
{
"mcpServers": {
"appwrite": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.appwrite.io/"]
}
}
}
A browser window opens to authenticate on first connect.
Self-hosted Appwrite
Running your own Appwrite instance? Run the MCP server locally over stdio and
authenticate with a project API key. See docs/self-hosted.md
for per-client setup.
Documentation
- Tool surface — the tools exposed to the model and the internal Appwrite catalog.
- How Cloud authentication works — the OAuth 2.1 flow.
- Documentation search — the in-process
appwrite_search_docstool and how to rebuild its index. - Self-hosted Appwrite — run the server locally with a project API key.
- Local development — running, testing, and debugging the server locally.
- AGENTS.md — full contributor guide and pre-PR checklist.
License
This MCP server is licensed under the MIT License. See the LICENSE file for details.
安装
把 appwrite 添加到你的客户端。选择你正在使用的那个。
{
"servers": {
"mcp-server-appwrite": {
"type": "http",
"url": "https://mcp.appwrite.io/"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add mcp-server-appwrite -- uvx mcp-server-appwritecodex mcp add mcp-server-appwrite -- uvx mcp-server-appwriteamp mcp add mcp-server-appwrite -- uvx mcp-server-appwrite{
"mcpServers": {
"mcp-server-appwrite": {
"command": "uvx",
"args": [
"mcp-server-appwrite"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp-server-appwrite": {
"command": "uvx",
"args": [
"mcp-server-appwrite"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"mcp-server-appwrite": {
"command": "uvx",
"args": [
"mcp-server-appwrite"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp-server-appwrite": {
"command": "uvx",
"args": [
"mcp-server-appwrite"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp-server-appwrite": {
"command": "uvx",
"args": [
"mcp-server-appwrite"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp-server-appwrite": {
"type": "local",
"command": "uvx",
"args": [
"mcp-server-appwrite"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp-server-appwrite": {
"command": {
"path": "uvx",
"args": [
"mcp-server-appwrite"
]
}
}
}
}Add to your Zed `settings.json`.
uvx mcp-server-appwriteRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
评分
39 / 100
不完整
- 文档25/25
- 维护25/25
- 可信度16/20
- 能力0/15
- 安装体验15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 0 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 0.8.60最新 | 2026年9月1日 |
| 0.8.59 | 2026年8月31日 |
| 0.8.58 | 2026年8月31日 |
| 0.8.57 | 2026年8月30日 |
| 0.8.56 | 2026年8月29日 |
| 0.8.55 | 2026年8月28日 |
| 0.8.54 | 2026年8月27日 |
| 0.8.53 | 2026年8月27日 |
| 0.8.52 | 2026年8月27日 |
| 0.8.51 | 2026年8月26日 |
| 0.8.50 | 2026年8月25日 |
| 0.8.49 | 2026年8月24日 |
| 0.8.48 | 2026年8月23日 |
| 0.8.47 | 2026年8月22日 |
| 0.8.46 | 2026年8月21日 |
| 0.8.44 | 2026年8月21日 |
| 0.8.43 | 2026年8月20日 |
| 0.8.42 | 2026年8月19日 |
| 0.8.41 | 2026年8月18日 |
| 0.8.40 | 2026年8月17日 |
| 0.8.39 | 2026年8月16日 |
| 0.8.38 | 2026年8月13日 |
| 0.8.37 | 2026年8月13日 |
| 0.8.36 | 2026年8月13日 |
| 0.8.35 | 2026年8月12日 |
| 0.8.34 | 2026年8月12日 |
| 0.8.33 | 2026年8月12日 |
| 0.8.31 | 2026年8月9日 |
| 0.8.30 | 2026年8月5日 |
| 0.8.29 | 2026年8月4日 |
| 0.8.28 | 2026年8月3日 |
| 0.8.27 | 2026年8月3日 |
| 0.8.26 | 2026年7月29日 |
| 0.8.25 | 2026年7月27日 |
| 0.8.24 | 2026年7月22日 |
| 0.8.23 | 2026年7月16日 |
| 0.8.22 | 2026年7月13日 |
| 0.8.20 | 2026年7月10日 |
| 0.8.19 | 2026年7月9日 |
| 0.8.18 | 2026年7月9日 |
| 0.8.17 | 2026年7月9日 |
| 0.8.16 | 2026年7月8日 |
| 0.8.15 | 2026年7月8日 |
| 0.8.14 | 2026年7月8日 |
| 0.8.13 | 2026年7月8日 |
| 0.8.12 | 2026年7月8日 |
| 0.8.11 | 2026年7月8日 |
| 0.8.10 | 2026年7月7日 |
| 0.8.9 | 2026年7月7日 |
| 0.8.8 | 2026年7月7日 |
| 0.8.7 | 2026年7月7日 |
| 0.8.6 | 2026年7月6日 |
| 0.8.5 | 2026年7月6日 |