BSMOriginal post
Apple Developer
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?
JSON
{ "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": } } }}Summary
Developers are facing an MCP error -32000: Connection closed while trying to connect GitHub Copilot for Xcode to AppWrite MCP server. To verify the info, try running the provided code in the terminal. The issue may be with the "env" section in mcp.json file, where the values for APPWRITE_API_KEY, APPWRITE_PROJECT_ID, and APPWRITE_ENDPOINT seem to be missing. Fill in these values to resolve the connection error.