Skip to content
VS Code

deviceshelf server for VS Code

app.deviceshelf/deviceshelf-server

Query and troubleshoot your local network in plain language: 37 tools, strictly local, no cloud.

client:VS Code transport:stdio runtime:oci

Install deviceshelf server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "deviceshelf-api-port",
      "description": "DEVICESHELF_API_PORT",
      "password": true
    }
  ],
  "servers": {
    "deviceshelf-server": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wealthwallet/deviceshelf-server:1.9.58"
      ],
      "env": {
        "DEVICESHELF_API_PORT": "${input:deviceshelf-api-port}"
      }
    }
  }
}

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

deviceshelf server in other clients