Verlon AI MCP for VS Code
ai.verlon/mcp
Inspect and manage Verlon AI gates, logs, recommendations, and experiments from any MCP client.
client:VS Code
transport:stdio
runtime:npm
Install Verlon AI MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "verlon-api-key",
"description": "VERLON_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "verlon-base-url",
"description": "VERLON_BASE_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@verlon-ai/mcp"
],
"env": {
"VERLON_API_KEY": "${input:verlon-api-key}",
"VERLON_BASE_URL": "${input:verlon-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs