

Design & Developed by Ramxcodes
© 2025. All rights reserved.
The Appwrite MCP Server is a powerful Model Context Protocol server that enables seamless integration of database operations into applications. Built with TypeScript and powered by Appwrite, this server provides 7 tools for basic database operations (It's just a demo, not a production ready server).
// Main MCP endpoint
GET /api/tools - Get all tools
POST /api/tools/{toolName} - Run tool// Document CRUD operations
tools: {
getDocument: "Retrieve single document",
listDocuments: "Get paginated document list",
createDocument: "Add new document",
updateDocument: "Modify existing document",
deleteDocument: "Remove document",
upsertDocument: "Create or update document"
}