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
- Functions never end and always fail (sta...
Hi ! I'm using Appwrite Cloud Pro and function execution from appwrite website is KO. Deploying starter function template, execution is always Failed and the ...
- How do I get my PR merged in auto genera...
https://github.com/appwrite/sdk-for-go/pull/48 I have raised this PR today in a sdk-generator repository which is a auto-generated repository. Now, as it is a a...
- My function executions console if overwh...
It seems the requests are getting processed correctly but it is using a older version of the backend. And it seems the cron requests done an hour ago are shown ...