Skip to content
VS Code

databroker for VS Code

dev.mossforge/databroker

Pay-per-call UK MOT history, reliability analytics and identifier utilities. x402 USDC on Base.

client:VS Code transport:stdio runtime:npm

Install databroker in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "databroker-base-url",
      "description": "DATABROKER_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "databroker-signer",
      "description": "DATABROKER_SIGNER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "databroker-wallet-key",
      "description": "DATABROKER_WALLET_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cdp-api-key-id",
      "description": "CDP_API_KEY_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cdp-api-key-secret",
      "description": "CDP_API_KEY_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cdp-wallet-secret",
      "description": "CDP_WALLET_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "databroker-max-usdc",
      "description": "DATABROKER_MAX_USDC",
      "password": true
    }
  ],
  "servers": {
    "databroker": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@mossforge/databroker-mcp"
      ],
      "env": {
        "DATABROKER_BASE_URL": "${input:databroker-base-url}",
        "DATABROKER_SIGNER": "${input:databroker-signer}",
        "DATABROKER_WALLET_KEY": "${input:databroker-wallet-key}",
        "CDP_API_KEY_ID": "${input:cdp-api-key-id}",
        "CDP_API_KEY_SECRET": "${input:cdp-api-key-secret}",
        "CDP_WALLET_SECRET": "${input:cdp-wallet-secret}",
        "DATABROKER_MAX_USDC": "${input:databroker-max-usdc}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

databroker in other clients