
I am trying to connect github copilot for xcode to appwrite mcp server.
I keep getting a • MCP error -32000: Connection closed.
I tried to verify my info, so I ran the folling in the terminal, which supposedly proves everything is fine if nothing is printed out:
APPWRITE_API_KEY="" \
APPWRITE_PROJECT_ID="" \
APPWRITE_ENDPOINT="" \
uvx mcp-server-appwrite --user
below is my mcp.json. what is wrong?
{
"servers": {
"appwrite": {
"type": "stdio",
"command": "path/to/.local/bin/uvx",
"args": [
"mcp-server-appwrite",
"--users",
"--databases",
"--storage",
"--teams",
"--functions",
"--projects"
],
"env": {
"APPWRITE_API_KEY": ,
"APPWRITE_PROJECT_ID":,
"APPWRITE_ENDPOINT":
}
}
}
}
Recommended threads
- Stuck at pinging the server to finish ad...
I'm not using the starter app and I'm not sure how to finish connecting my app to Appwrite.io. Is there a CURL command I can run to finish setup?
- 500 internal error
I get a 500 internal error when trying to access my database on appwrite cloud. Sometimes it would start working but this time it never corrects.
- Error getting session: AppwriteException...
I get this error `Error getting session: AppwriteException: User (role: guests) missing scope (account)` when running in prod. As soon as I try running my app o...
