grist mcp server for VS Code
io.github.gwhthompson/grist-mcp-server
11 tools for managing Grist documents with AI
client:VS Code
transport:stdio
runtime:npm
Install grist mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "grist-api-key",
"description": "GRIST_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "grist-base-url",
"description": "GRIST_BASE_URL",
"password": true
}
],
"servers": {
"grist-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"grist-mcp-server"
],
"env": {
"GRIST_API_KEY": "${input:grist-api-key}",
"GRIST_BASE_URL": "${input:grist-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs