Skip to content
VS Code

hedera hcs mcp server for VS Code

io.github.mountainmystic/hedera-hcs-mcp-server

AI-powered Hedera HCS topic intelligence for agents. Pay per call in HBAR.

client:VS Code transport:stdio runtime:npm

Install hedera hcs mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "hedera-account-id",
      "description": "HEDERA_ACCOUNT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "hedera-private-key",
      "description": "HEDERA_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "hedera-network",
      "description": "HEDERA_NETWORK",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openai-api-key",
      "description": "OPENAI_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "hedera-hcs-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "hedera-hcs-mcp-server"
      ],
      "env": {
        "HEDERA_ACCOUNT_ID": "${input:hedera-account-id}",
        "HEDERA_PRIVATE_KEY": "${input:hedera-private-key}",
        "HEDERA_NETWORK": "${input:hedera-network}",
        "OPENAI_API_KEY": "${input:openai-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

hedera hcs mcp server in other clients