Skip to content
VS Code

Obyte MCP for VS Code

io.github.taump/obyte-mcp

Query Obyte mainnet and testnet: balances, units, autonomous agents, AA state, dry runs, tokens.

client:VS Code transport:stdio runtime:npm

Install Obyte MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "obyte-network",
      "description": "OBYTE_NETWORK",
      "password": true
    },
    {
      "type": "promptString",
      "id": "obyte-mainnet-hub-address",
      "description": "OBYTE_MAINNET_HUB_ADDRESS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "obyte-testnet-hub-address",
      "description": "OBYTE_TESTNET_HUB_ADDRESS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "obyte-testnet-token-registry-address",
      "description": "OBYTE_TESTNET_TOKEN_REGISTRY_ADDRESS",
      "password": true
    }
  ],
  "servers": {
    "obyte-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "obyte-mcp"
      ],
      "env": {
        "OBYTE_NETWORK": "${input:obyte-network}",
        "OBYTE_MAINNET_HUB_ADDRESS": "${input:obyte-mainnet-hub-address}",
        "OBYTE_TESTNET_HUB_ADDRESS": "${input:obyte-testnet-hub-address}",
        "OBYTE_TESTNET_TOKEN_REGISTRY_ADDRESS": "${input:obyte-testnet-token-registry-address}"
      }
    }
  }
}

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

Obyte MCP in other clients