Skip to content
VS Code

canton mcp for VS Code

io.github.noves-inc/canton-mcp

Query Canton Network balances, rewards, transactions, prices, and identity from any AI agent.

client:VS Code transport:stdio runtime:npm

Install canton mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "noves-api-key",
      "description": "NOVES_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "canton-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@noves/canton-mcp"
      ],
      "env": {
        "NOVES_API_KEY": "${input:noves-api-key}"
      }
    }
  }
}

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

canton mcp in other clients