Skip to content
VS Code

sipnav mcp for VS Code

io.github.werebear73/sipnav-mcp

MCP server for the SIPNAV VOIP switch.

client:VS Code transport:stdio runtime:nuget

Install sipnav mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sipnav-username",
      "description": "SIPNAV_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sipnav-password",
      "description": "SIPNAV_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sipnav-api-url",
      "description": "SIPNAV_API_URL",
      "password": true
    }
  ],
  "servers": {
    "sipnav-mcp": {
      "type": "stdio",
      "command": "dnx",
      "args": [
        "Waretech.SipnavMcp",
        "--yes"
      ],
      "env": {
        "SIPNAV_USERNAME": "${input:sipnav-username}",
        "SIPNAV_PASSWORD": "${input:sipnav-password}",
        "SIPNAV_API_URL": "${input:sipnav-api-url}"
      }
    }
  }
}

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

sipnav mcp in other clients