mcp coda for VS Code
io.github.vish288/mcp-coda
MCP server for Coda API — docs, pages, tables, rows, formulas, permissions, and automation.
client:VS Code
transport:stdio
runtime:pypi
Install mcp coda in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "coda-api-token",
"description": "CODA_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "coda-read-only",
"description": "CODA_READ_ONLY",
"password": true
}
],
"servers": {
"mcp-coda": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-coda"
],
"env": {
"CODA_API_TOKEN": "${input:coda-api-token}",
"CODA_READ_ONLY": "${input:coda-read-only}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs