Documentation MCP Server 🐳 Docker

IT Glue MCP

MCP server providing Claude with access to IT Glue documentation, asset management, organizations, passwords, and flexible assets.

🔗 Companion Plugin

Pair this MCP server with the IT Glue plugin for skills, commands, and API knowledge alongside direct API access.

Installation

Run the MCP server with npx:

npx @wyre-technology/itglue-mcp

Or install the package:

npm install @wyre-technology/itglue-mcp

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "itglue": {
      "command": "npx",
      "args": [
        "@wyre-technology/itglue-mcp"
      ],
      "env": {
        "ITGLUE_API_KEY": "your-itglue-api-key"
      }
    }
  }
}

Authentication

Variable Required Description
ITGLUE_API_KEY Yes Your IT Glue API key (format: ITG.xxx)
ITGLUE_REGION No API region: us (default), eu, or au

Architecture

Flat tool exposure — all tools available immediately. Includes a health check utility tool.

Available Tools (8)

Tools are organized into 5 domains:

Organizations

Search and retrieve organization records.

Tool Description
search_organizations Search organizations with filtering
get_organization Get a specific organization by ID

Configurations

Manage devices and configuration items.

Tool Description
search_configurations Search configurations with filtering
get_configuration Get a specific configuration by ID

Passwords

Secure credential storage and retrieval.

Tool Description
search_passwords Search password entries (metadata only)
get_password Get a specific password including value

Documents

Search and manage documentation.

Tool Description
search_documents Search documents with filtering

Flexible Assets

Custom structured documentation types.

Tool Description
search_flexible_assets Search flexible assets by type

Rate Limits

3000 requests per 5 minutes. The underlying client library handles rate limiting automatically.