LogiSheets for VS Code
io.github.logisky/logisheets-mcp
An Excel-compatible spreadsheet engine for agents: deterministic formulas, block memory, real .xlsx.
client:VS Code
transport:stdio
runtime:npm
Install LogiSheets in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "logisheets-mcp-tools",
"description": "LOGISHEETS_MCP_TOOLS",
"password": true
}
],
"servers": {
"logisheets-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"logisheets-mcp"
],
"env": {
"LOGISHEETS_MCP_TOOLS": "${input:logisheets-mcp-tools}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs