Scope Analytics for VS Code
io.github.wally827/scope-analytics-mcp
Install + query Scope analytics from an AI coding agent (Claude Code, Cursor, etc.).
client:VS Code
transport:stdio
runtime:pypi
Install Scope Analytics in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "scope-api-key",
"description": "SCOPE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "scope-api-base",
"description": "SCOPE_API_BASE",
"password": true
}
],
"servers": {
"scope-analytics-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"scope-analytics-mcp"
],
"env": {
"SCOPE_API_KEY": "${input:scope-api-key}",
"SCOPE_API_BASE": "${input:scope-api-base}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs