Skip to content
VS Code

MsgMesh for VS Code

com.alderflux/msgmesh

Event bus for AI agents: watch_topic long-polls live events; manage topics, schemas, webhooks.

client:VS Code transport:stdio runtime:npm

Install MsgMesh in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mq-api-key",
      "description": "MQ_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mq-control-plane-url",
      "description": "MQ_CONTROL_PLANE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mq-gateway-url",
      "description": "MQ_GATEWAY_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mq-realtime-url",
      "description": "MQ_REALTIME_URL",
      "password": true
    }
  ],
  "servers": {
    "msgmesh": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@msgmesh/mcp-server"
      ],
      "env": {
        "MQ_API_KEY": "${input:mq-api-key}",
        "MQ_CONTROL_PLANE_URL": "${input:mq-control-plane-url}",
        "MQ_GATEWAY_URL": "${input:mq-gateway-url}",
        "MQ_REALTIME_URL": "${input:mq-realtime-url}"
      }
    }
  }
}

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

MsgMesh in other clients