Skip to content
VS Code

fabricator panel mcp for VS Code

io.github.philderks/fabricator-panel-mcp

Manage and diagnose Minecraft servers through the self-hosted Fabricator panel.

client:VS Code transport:stdio runtime:pypi

Install fabricator panel mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fabricator-url",
      "description": "FABRICATOR_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fabricator-token",
      "description": "FABRICATOR_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "fabricator-panel-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "fabricator-panel-mcp"
      ],
      "env": {
        "FABRICATOR_URL": "${input:fabricator-url}",
        "FABRICATOR_TOKEN": "${input:fabricator-token}"
      }
    }
  }
}

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

fabricator panel mcp in other clients