mcp for VS Code
ai.clarx/mcp
Score agent manifests, generate CI workflows, and pull Clarx scan findings into your IDE.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "anthropic-api-key",
"description": "ANTHROPIC_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "clarx-mcp-token",
"description": "CLARX_MCP_TOKEN",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@clarxai/mcp"
],
"env": {
"ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
"CLARX_MCP_TOKEN": "${input:clarx-mcp-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs