Skip to content
VS Code

mcp bigdatacorp for VS Code

io.github.codespar/mcp-bigdatacorp

MCP server for BigDataCorp — Brazilian data enrichment + KYC (CPF/CNPJ/vehicle/property/antifraud)

client:VS Code transport:stdio runtime:npm

Install mcp bigdatacorp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "bigdatacorp-access-token",
      "description": "BIGDATACORP_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bigdatacorp-token-id",
      "description": "BIGDATACORP_TOKEN_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bigdatacorp-api-base",
      "description": "BIGDATACORP_API_BASE",
      "password": true
    }
  ],
  "servers": {
    "mcp-bigdatacorp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-bigdatacorp"
      ],
      "env": {
        "BIGDATACORP_ACCESS_TOKEN": "${input:bigdatacorp-access-token}",
        "BIGDATACORP_TOKEN_ID": "${input:bigdatacorp-token-id}",
        "BIGDATACORP_API_BASE": "${input:bigdatacorp-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

mcp bigdatacorp in other clients