Skip to content
VS Code

symbol for VS Code

io.github.inotakeh/symbol

Read-only MCP server for the Symbol blockchain (XYM): node health, harvesting, voting keys.

client:VS Code transport:stdio runtime:npm

Install symbol in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "symbol-node-url",
      "description": "SYMBOL_NODE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "symbol-network",
      "description": "SYMBOL_NETWORK",
      "password": true
    },
    {
      "type": "promptString",
      "id": "symbol-timezone",
      "description": "SYMBOL_TIMEZONE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "symbol-reference-nodes",
      "description": "SYMBOL_REFERENCE_NODES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "symbol-request-timeout-ms",
      "description": "SYMBOL_REQUEST_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "symbol-state-dir",
      "description": "SYMBOL_STATE_DIR",
      "password": true
    }
  ],
  "servers": {
    "symbol": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "symbol-mcp-server"
      ],
      "env": {
        "SYMBOL_NODE_URL": "${input:symbol-node-url}",
        "SYMBOL_NETWORK": "${input:symbol-network}",
        "SYMBOL_TIMEZONE": "${input:symbol-timezone}",
        "SYMBOL_REFERENCE_NODES": "${input:symbol-reference-nodes}",
        "SYMBOL_REQUEST_TIMEOUT_MS": "${input:symbol-request-timeout-ms}",
        "SYMBOL_STATE_DIR": "${input:symbol-state-dir}"
      }
    }
  }
}

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

symbol in other clients