AgentHubAgentHub

ioffice-mcp

MCP ServerMCP Registry官方收录

io.github.chrischall/ioffice-mcp · v2.1.4

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

概览

ioffice-mcp 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "ioffice-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "ioffice-mcp"
      ],
      "env": {
        "IOFFICE_HOST": "<IOFFICE_HOST>"
      }
    }
  }
}

环境变量

IOFFICE_HOST必填

Your iOffice tenant hostname (e.g. yourcompany.ioffice.com)

IOFFICE_TOKEN可选secret

Your iOffice API token (preferred over username/password)

IOFFICE_USERNAME可选

Your iOffice username (used if no API token)

IOFFICE_PASSWORD可选secret

Your iOffice password (used if no API token)

相关资源

统一 Manifest

{
  "id": "io.github.chrischall/ioffice-mcp",
  "type": "mcp-server",
  "version": "2.1.4",
  "displayName": "ioffice-mcp",
  "description": "iOffice workspace management for Claude — book rooms, manage visitors, maintenance tickets",
  "repository": {
    "url": "https://github.com/chrischall/ioffice-mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "ioffice-mcp",
        "version": "2.1.4",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "IOFFICE_HOST",
            "description": "Your iOffice tenant hostname (e.g. yourcompany.ioffice.com)",
            "isRequired": true
          },
          {
            "name": "IOFFICE_TOKEN",
            "description": "Your iOffice API token (preferred over username/password)",
            "isSecret": true
          },
          {
            "name": "IOFFICE_USERNAME",
            "description": "Your iOffice username (used if no API token)"
          },
          {
            "name": "IOFFICE_PASSWORD",
            "description": "Your iOffice password (used if no API token)",
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.chrischall/ioffice-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.chrischall%2Fioffice-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
ioffice-mcp — MCP Server 安装与配置 · AgentHub