Skip to content
VS Code

iptime mcp for VS Code

io.github.mikusnuz/iptime-mcp

Manage ipTIME routers through a local, safety-gated MCP server with firmware-aware capabilities.

client:VS Code transport:stdio runtime:npm

Install iptime mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "iptime-router-url",
      "description": "IPTIME_ROUTER_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "iptime-router-username",
      "description": "IPTIME_ROUTER_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "iptime-router-password",
      "description": "IPTIME_ROUTER_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "iptime-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "iptime-mcp"
      ],
      "env": {
        "IPTIME_ROUTER_URL": "${input:iptime-router-url}",
        "IPTIME_ROUTER_USERNAME": "${input:iptime-router-username}",
        "IPTIME_ROUTER_PASSWORD": "${input:iptime-router-password}"
      }
    }
  }
}

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

iptime mcp in other clients