-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
💭 Description
Description The current setup instructions for the Appwrite MCP servers lead to validation errors when implemented in Google Antigravity. Specifically, the IDE fails to recognize the servers when using the 'servers' root key and the 'url' field for the documentation server.
Observed Issues 1. Root Key Conflict: Using 'servers' as the root key often results in the IDE showing "No MCP servers installed." 2. Schema Validation Error: For the 'appwrite-docs' server, using 'url' triggers the error: "Error: serverUrl or command must be specified."
Verified Working Configuration In the Google Antigravity environment, the following structure resolved all errors and successfully activated both the API and Docs servers:
{
"mcpServers": {
"appwrite-api": {
"command": "uvx",
"args": ["mcp-server-appwrite", "--users"],
"env": {
"APPWRITE_PROJECT_ID": "your-project-id",
"APPWRITE_API_KEY": "your-api-key",
"APPWRITE_ENDPOINT": "https://.cloud.appwrite.io/v1"
}
},
"appwrite-docs": {
"serverUrl": "https://mcp-for-docs.appwrite.io",
"type": "http"
}
}
}
Suggested Action Update the Antigravity/IDX setup guide in https://appwrite.io/docs/tooling/mcp/antigravity reflect the 'mcpServers' root key and 'serverUrl' field to ensure a seamless onboarding experience for developers using Google's cloud-based IDE.
👀 Have you spent some time to check if this issue has been raised before?
- I checked and didn't find similar issue
🏢 Have you read the Code of Conduct?
- I have read the Code of Conduct
coderabbitai
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation