mcp for VS Code
io.github.sedis-ab/mcp
Read-only MCP tools for the Sedis PartnerAPI v2 (Bolagsanalys + Fastighetsbenchmark).
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sedis-api-key",
"description": "SEDIS_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "sedis-api-base-url",
"description": "SEDIS_API_BASE_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@sedis/mcp"
],
"env": {
"SEDIS_API_KEY": "${input:sedis-api-key}",
"SEDIS_API_BASE_URL": "${input:sedis-api-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