Skip to content
VS Code

ChirpStack for VS Code

io.github.oliveres/chirpstack-mcp-server

Manage and live-debug LoRaWAN devices on a ChirpStack v4 network server over its gRPC API

client:VS Code transport:stdio runtime:pypi

Install ChirpStack in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "chirpstack-server",
      "description": "CHIRPSTACK_SERVER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "chirpstack-api-key",
      "description": "CHIRPSTACK_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "chirpstack-toolsets",
      "description": "CHIRPSTACK_TOOLSETS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "chirpstack-tls",
      "description": "CHIRPSTACK_TLS",
      "password": true
    }
  ],
  "servers": {
    "chirpstack-mcp-server": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "chirpstack-mcp-server"
      ],
      "env": {
        "CHIRPSTACK_SERVER": "${input:chirpstack-server}",
        "CHIRPSTACK_API_KEY": "${input:chirpstack-api-key}",
        "CHIRPSTACK_TOOLSETS": "${input:chirpstack-toolsets}",
        "CHIRPSTACK_TLS": "${input:chirpstack-tls}"
      }
    }
  }
}

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

ChirpStack in other clients