agent services mcp for VS Code
io.github.gareth1953/agent-services-mcp
MCP server: x402-paid & free tools for AI agents — provenance, quality scoring, action audit.
client:VS Code
transport:stdio
runtime:npm
Install agent services mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "provenance-url",
"description": "PROVENANCE_URL",
"password": true
},
{
"type": "promptString",
"id": "quality-gate-url",
"description": "QUALITY_GATE_URL",
"password": true
},
{
"type": "promptString",
"id": "audit-url",
"description": "AUDIT_URL",
"password": true
}
],
"servers": {
"agent-services-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"agent-services-mcp"
],
"env": {
"PROVENANCE_URL": "${input:provenance-url}",
"QUALITY_GATE_URL": "${input:quality-gate-url}",
"AUDIT_URL": "${input:audit-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs