Arm's official MCP server for porting and tuning software on Arm — semantic docs search, codebase migration scanning, container architecture checks and LLVM-MCA assembly analysis.
Appwrite MCP Server
Summary
Appwrite's official MCP server exposes databases, users, teams, functions and storage as agent tools, over a hosted OAuth endpoint or a local stdio bridge.
Features
- Database collection and document CRUD as agent tools
- User, team and membership management
- Trigger and inspect serverless function executions
- Storage bucket and file operations
- Search the Appwrite documentation with appwrite_search_docs
- Hosted endpoint with browser-based OAuth, no long-lived key in a config file
Installation
Set up this MCP server in your favorite AI agent — copy a ready-made configuration below.
Description
Appwrite is the open-source backend platform — auth, databases, storage, serverless functions and messaging behind one API. Its official MCP server puts that same API in front of an AI assistant, so an agent can inspect and operate a project's backend directly instead of round-tripping through the console or hand-written scripts.
The exposed surface follows Appwrite's own service split. Databases cover collection and document CRUD, so an agent can read the shape of your data and write to it. Users and Teams cover account management and membership. Functions cover serverless executions. Storage covers buckets and files. A separate appwrite_search_docs tool searches Appwrite's documentation, which matters more than it sounds — it lets the model check the real API contract before it calls something.
The recommended path is the hosted server at https://mcp.appwrite.io/, which authenticates through a browser-based OAuth flow rather than a long-lived key pasted into a config file; Claude adds it as a custom connector and Cursor takes the URL directly. Clients that only speak stdio can bridge to it with mcp-remote. A self-hosted Python package, mcp-server-appwrite, is published on PyPI for projects running their own Appwrite instance.
MIT licensed and maintained by Appwrite at appwrite/mcp.
Related MCP Servers
Official AntV MCP server that turns a description of your data into a rendered chart — 26 visualization types from bar and line to sankey, mind-map, fishbone and geographic maps.
Context-compression MCP server that shrinks tool outputs, logs, files and RAG chunks before they reach the model, cutting 60-95% of tokens on JSON payloads.
Persistent memory for coding agents as a single Go binary — SQLite and FTS5 behind MCP, an HTTP API, a CLI and a TUI, with no Node, Python or Docker required.