modelbound mcp for VS Code
io.github.modelbound/modelbound-mcp
Local-first MCP server for agent skills. Validate, lint, diff, and convert across IDEs.
client:VS Code
transport:stdio
runtime:npm
Install modelbound mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "modelbound-api-key",
"description": "MODELBOUND_API_KEY",
"password": true
}
],
"servers": {
"modelbound-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"modelbound-mcp"
],
"env": {
"MODELBOUND_API_KEY": "${input:modelbound-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs