coda for VS Code
io.github.nkpar/coda
Interact with Coda.io documents, tables, and rows via the Coda API
client:VS Code
transport:stdio
runtime:oci
Install coda in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "coda-api-token",
"description": "CODA_API_TOKEN",
"password": true
}
],
"servers": {
"coda": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/nkpar/coda-mcp:0.2.1"
],
"env": {
"CODA_API_TOKEN": "${input:coda-api-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs