MCP server for IT Glue — documentation, passwords, configurations, and flexible asset tools for AI assistants
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"itglue": {
"env": {
"ITGLUE_REGION": "us",
"ITGLUE_API_KEY": "${ITGLUE_API_KEY}"
},
"args": [
"@wyre-technology/itglue-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides Claude with access to IT Glue documentation and asset management.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @wyre-technology/itglue-mcp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / security
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Itglue Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides Claude with access to IT Glue documentation and asset management.
npm install @wyre-technology/itglue-mcp
Or use the Docker image:
docker pull ghcr.io/wyre-technology/itglue-mcp:latest
The server accepts credentials via environment variables:
| Variable | Description | Required |
|---|---|---|
ITGLUE_API_KEY | Your IT Glue API key (format: ITG.xxx) | Yes |
ITGLUE_REGION | API region: us, eu, or au (default: us) | No |
Alternative: The MCP Gateway can inject credentials via X_API_KEY header.
Add to your .mcp.json:
{
"mcpServers": {
"itglue": {
"command": "npx",
"args": ["@wyre-technology/itglue-mcp"],
"env": {
"ITGLUE_API_KEY": "${ITGLUE_API_KEY}",
"ITGLUE_REGION": "us"
}
}
}
}
Or with Docker:
{
"mcpServers": {
"itglue": {
"command": "docker",
"args": ["run", "--rm", "-i", "-e", "ITGLUE_API_KEY", "ghcr.io/wyre-technology/itglue-mcp:latest"],
"env": {
"ITGLUE_API_KEY": "${ITGLUE_API_KEY}"
}
}
}
}
Once configured, you can ask Claude:
get_password with explicit ID to retrieve password valuesApache-2.0
See CONTRIBUTING.md for guidelines.