Skip to content
VS Code

Scope (Legal) for VS Code

io.github.scope-bid/scope-mcp

Dispatch litigation work to legal vendors from any MCP-compatible AI workflow. Patent pending.

client:VS Code transport:stdio runtime:npm

Install Scope (Legal) 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",
        "@scope-bid/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

Scope (Legal) in other clients