mcp server for VS Code
io.github.agentmark-ai/mcp-server
Inspect AgentMark traces and drive AgentMark Cloud: apps, experiments, metrics, deployments.
client:VS Code
transport:stdio
runtime:npm
Install mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "agentmark-api-key",
"description": "AGENTMARK_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "agentmark-api-url",
"description": "AGENTMARK_API_URL",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@agentmark-ai/mcp-server"
],
"env": {
"AGENTMARK_API_KEY": "${input:agentmark-api-key}",
"AGENTMARK_API_URL": "${input:agentmark-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs