wisegrid mcp for VS Code
io.github.ryankramer/wisegrid-mcp
Read and write WiseGrid sheets, rows, columns and reports from any AI agent.
client:VS Code
transport:stdio
runtime:pypi
Install wisegrid mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wisegrid-api-key",
"description": "WISEGRID_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "wisegrid-base-url",
"description": "WISEGRID_BASE_URL",
"password": true
}
],
"servers": {
"wisegrid-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"wisegrid-mcp"
],
"env": {
"WISEGRID_API_KEY": "${input:wisegrid-api-key}",
"WISEGRID_BASE_URL": "${input:wisegrid-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