Skip to content
VS Code

traql for VS Code

io.traql/mcp-server

AML risk scoring for crypto addresses and transactions on Ethereum, BSC, TRON, TON, Bitcoin

client:VS Code transport:stdio runtime:npm

Install traql in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "traql-api-key",
      "description": "TRAQL_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "traql-api-url",
      "description": "TRAQL_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "traql-timeout-ms",
      "description": "TRAQL_TIMEOUT_MS",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@traql/mcp"
      ],
      "env": {
        "TRAQL_API_KEY": "${input:traql-api-key}",
        "TRAQL_API_URL": "${input:traql-api-url}",
        "TRAQL_TIMEOUT_MS": "${input:traql-timeout-ms}"
      }
    }
  }
}

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

traql in other clients