SpecMgr for VS Code
io.github.dfch/biz.dfch.specmgr
An artifact manager for system specifications.
client:VS Code
transport:stdio
runtime:pypi
Install SpecMgr in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "specmgr-mcp-transport",
"description": "SPECMGR_MCP_TRANSPORT",
"password": true
},
{
"type": "promptString",
"id": "specmgr-mcp-host",
"description": "SPECMGR_MCP_HOST",
"password": true
},
{
"type": "promptString",
"id": "specmgr-mcp-port",
"description": "SPECMGR_MCP_PORT",
"password": true
},
{
"type": "promptString",
"id": "specmgr-adr-dir",
"description": "SPECMGR_ADR_DIR",
"password": true
}
],
"servers": {
"biz.dfch.specmgr": {
"type": "stdio",
"command": "uvx",
"args": [
"biz-dfch-specmgr"
],
"env": {
"SPECMGR_MCP_TRANSPORT": "${input:specmgr-mcp-transport}",
"SPECMGR_MCP_HOST": "${input:specmgr-mcp-host}",
"SPECMGR_MCP_PORT": "${input:specmgr-mcp-port}",
"SPECMGR_ADR_DIR": "${input:specmgr-adr-dir}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs