Sin tener experiencia y realizando mis primeros pasos en claude code y conexiones con MCP intente configurar el MCP de appwrite segun la documentacion https://appwrite.io/integrations/mcp-claude con claude en la terminal pero me salia un error y lo que termino funcionando para mi fue lo siguiente.
Crear el archivo JSON
cat > appwrite-config.json << 'EOF' { "command": "uvx", "args": ["mcp-server-appwrite", "--users"], "env": { "APPWRITE_PROJECT_ID": "proyecto_id", "APPWRITE_API_KEY": "api_key_creada", "APPWRITE_ENDPOINT": "http://192.168.0.19/v1" } } EOF
Usar el archivo
claude mcp add-json appwrite "$(cat appwrite-config.json)"
Lo comparto por si otra persona tiene el mismo problema
Recommended threads
- `type 'Null' is not a subtype of type 'b...
When creating a new file using Appwrite Flutter SDK, the file is successfully created on the server, but the client throws the following exception: ``` type ...
- Console: Query on attribute has greater ...
I noticed an issue when one of my tables reached over ~800 rows. That table is relational to my users table Within the console I am able to view the table with ...
- Appwrite docs mcp server 502 bad gateway
I added the appwrite docs mcp server to vscode following the docs https://appwrite.io/docs/tooling/mcp/vscode#step-1 but upon start it gives the following error...