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 |
Getting Credentials
Vendor portal: https://www.itglue.com/
Prerequisites
- IT Glue account with Administrator role
- IT Glue tier that includes API access (verify your plan includes API)
Steps
- Sign in to your IT Glue instance as an Administrator.
- Navigate to Account → Settings → API Keys.
- Click "Generate API Key".
- Set a descriptive name (e.g., "WYRE Gateway"). Select permissions per least-privilege.
- Copy the generated key (shown once) to ITGLUE_API_KEY.
- Set ITGLUE_REGION to your regional deployment if non-US: eu or au.
Credential Format
API key starts with "ITG." prefix (e.g., "ITG.xxx"). Region must be us (default), eu, or au.
Rotation
Generate new key via Account → Settings → API Keys; old key revokable from the same page.
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.