Scope for VS Code
io.github.jackgillen15-dev/scope-mcp
Dispatch litigation work to legal-services vendors from any MCP-compatible AI workflow.
client:VS Code
transport:stdio
runtime:npm
Install Scope in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "scope-api-base",
"description": "SCOPE_API_BASE",
"password": true
},
{
"type": "promptString",
"id": "scope-api-token",
"description": "SCOPE_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "scope-org-slug",
"description": "SCOPE_ORG_SLUG",
"password": true
}
],
"servers": {
"scope-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@jackgillen15-dev/scope-mcp"
],
"env": {
"SCOPE_API_BASE": "${input:scope-api-base}",
"SCOPE_API_TOKEN": "${input:scope-api-token}",
"SCOPE_ORG_SLUG": "${input:scope-org-slug}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs