Skip to content
VS Code

moltbridge for VS Code

io.github.jkheadley/moltbridge

Agent network intelligence for AI agents. Trust scoring, broker discovery, and Ed25519 identity.

client:VS Code transport:stdio runtime:npm

Install moltbridge in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "moltbridge-agent-id",
      "description": "MOLTBRIDGE_AGENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "moltbridge-signing-key",
      "description": "MOLTBRIDGE_SIGNING_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "moltbridge-base-url",
      "description": "MOLTBRIDGE_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "moltbridge": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "moltbridge"
      ],
      "env": {
        "MOLTBRIDGE_AGENT_ID": "${input:moltbridge-agent-id}",
        "MOLTBRIDGE_SIGNING_KEY": "${input:moltbridge-signing-key}",
        "MOLTBRIDGE_BASE_URL": "${input:moltbridge-base-url}"
      }
    }
  }
}

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

moltbridge in other clients