mcp server for VS Code
ai.marchward/mcp-server
Runtime authority for AI agents: credential mediation, spend cap, approval gates, audit log.
client:VS Code
transport:stdio
runtime:npm
Install mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "marchward-api-url",
"description": "MARCHWARD_API_URL",
"password": true
},
{
"type": "promptString",
"id": "marchward-api-key",
"description": "MARCHWARD_API_KEY",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@marchward/mcp-server"
],
"env": {
"MARCHWARD_API_URL": "${input:marchward-api-url}",
"MARCHWARD_API_KEY": "${input:marchward-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