Skip to content
VS Code

ioffice mcp for VS Code

io.github.chrischall/ioffice-mcp

iOffice workspace management for Claude — book rooms, manage visitors, maintenance tickets

client:VS Code transport:stdio runtime:npm

Install ioffice mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ioffice-host",
      "description": "IOFFICE_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ioffice-token",
      "description": "IOFFICE_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ioffice-username",
      "description": "IOFFICE_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ioffice-password",
      "description": "IOFFICE_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "ioffice-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "ioffice-mcp"
      ],
      "env": {
        "IOFFICE_HOST": "${input:ioffice-host}",
        "IOFFICE_TOKEN": "${input:ioffice-token}",
        "IOFFICE_USERNAME": "${input:ioffice-username}",
        "IOFFICE_PASSWORD": "${input:ioffice-password}"
      }
    }
  }
}

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

ioffice mcp in other clients