PluginBench
MCP Server
Active
MIT

IT Glue MCP Server

io.github.selic/mcp-itglue

What is the IT Glue MCP server?

IT Glue MCP server for MSPs — documents, flexible assets, semantic vector search, RBAC, and BYOK

How to install IT Glue

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • ITGLUE_API_KEY
    required
    secret

    IT Glue API key (Account → Settings → API Keys)

  • ITGLUE_REGION

    IT Glue region: us, eu, or au

  • ITGLUE_BASE_URL

    Full API base URL (overrides ITGLUE_REGION)

  • OPENAI_API_KEY
    secret

    OpenAI API key — enables semantic vector search tools

  • AZURE_OPENAI_API_KEY
    secret

    Azure OpenAI API key — enables vector search via Azure (requires AZURE_OPENAI_ENDPOINT)

  • AZURE_OPENAI_ENDPOINT

    Azure OpenAI endpoint URL

  • EMBEDDING_MODEL

    Embedding model or Azure deployment name

  • ITGLUE_ADVANCED_TOOLSET

    true/1 registers the advanced toolset (itglue_get, itglue_find_endpoint) — an opt-in read-only escape hatch; password resources stay blocked

  • VECTOR_INDEX_PATH

    Path of the persisted vector index file

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "mcp-itglue": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-itglue"
      ],
      "env": {
        "ITGLUE_API_KEY": "<YOUR_ITGLUE_API_KEY>",
        "ITGLUE_REGION": "<YOUR_ITGLUE_REGION>",
        "ITGLUE_BASE_URL": "<YOUR_ITGLUE_BASE_URL>",
        "OPENAI_API_KEY": "<YOUR_OPENAI_API_KEY>",
        "AZURE_OPENAI_API_KEY": "<YOUR_AZURE_OPENAI_API_KEY>",
        "AZURE_OPENAI_ENDPOINT": "<YOUR_AZURE_OPENAI_ENDPOINT>",
        "EMBEDDING_MODEL": "<YOUR_EMBEDDING_MODEL>",
        "ITGLUE_ADVANCED_TOOLSET": "<YOUR_ITGLUE_ADVANCED_TOOLSET>",
        "VECTOR_INDEX_PATH": "<YOUR_VECTOR_INDEX_PATH>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "mcp-itglue": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-itglue"
      ],
      "env": {
        "ITGLUE_API_KEY": "<YOUR_ITGLUE_API_KEY>",
        "ITGLUE_REGION": "<YOUR_ITGLUE_REGION>",
        "ITGLUE_BASE_URL": "<YOUR_ITGLUE_BASE_URL>",
        "OPENAI_API_KEY": "<YOUR_OPENAI_API_KEY>",
        "AZURE_OPENAI_API_KEY": "<YOUR_AZURE_OPENAI_API_KEY>",
        "AZURE_OPENAI_ENDPOINT": "<YOUR_AZURE_OPENAI_ENDPOINT>",
        "EMBEDDING_MODEL": "<YOUR_EMBEDDING_MODEL>",
        "ITGLUE_ADVANCED_TOOLSET": "<YOUR_ITGLUE_ADVANCED_TOOLSET>",
        "VECTOR_INDEX_PATH": "<YOUR_VECTOR_INDEX_PATH>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "mcp-itglue": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-itglue"
      ],
      "env": {
        "ITGLUE_API_KEY": "<YOUR_ITGLUE_API_KEY>",
        "ITGLUE_REGION": "<YOUR_ITGLUE_REGION>",
        "ITGLUE_BASE_URL": "<YOUR_ITGLUE_BASE_URL>",
        "OPENAI_API_KEY": "<YOUR_OPENAI_API_KEY>",
        "AZURE_OPENAI_API_KEY": "<YOUR_AZURE_OPENAI_API_KEY>",
        "AZURE_OPENAI_ENDPOINT": "<YOUR_AZURE_OPENAI_ENDPOINT>",
        "EMBEDDING_MODEL": "<YOUR_EMBEDDING_MODEL>",
        "ITGLUE_ADVANCED_TOOLSET": "<YOUR_ITGLUE_ADVANCED_TOOLSET>",
        "VECTOR_INDEX_PATH": "<YOUR_VECTOR_INDEX_PATH>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "mcp-itglue": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-itglue"
      ],
      "env": {
        "ITGLUE_API_KEY": "<YOUR_ITGLUE_API_KEY>",
        "ITGLUE_REGION": "<YOUR_ITGLUE_REGION>",
        "ITGLUE_BASE_URL": "<YOUR_ITGLUE_BASE_URL>",
        "OPENAI_API_KEY": "<YOUR_OPENAI_API_KEY>",
        "AZURE_OPENAI_API_KEY": "<YOUR_AZURE_OPENAI_API_KEY>",
        "AZURE_OPENAI_ENDPOINT": "<YOUR_AZURE_OPENAI_ENDPOINT>",
        "EMBEDDING_MODEL": "<YOUR_EMBEDDING_MODEL>",
        "ITGLUE_ADVANCED_TOOLSET": "<YOUR_ITGLUE_ADVANCED_TOOLSET>",
        "VECTOR_INDEX_PATH": "<YOUR_VECTOR_INDEX_PATH>"
      }
    }
  }
}
Claude Code
claude mcp add mcp-itglue --env ITGLUE_API_KEY=<YOUR_ITGLUE_API_KEY> --env ITGLUE_REGION=<YOUR_ITGLUE_REGION> --env ITGLUE_BASE_URL=<YOUR_ITGLUE_BASE_URL> --env OPENAI_API_KEY=<YOUR_OPENAI_API_KEY> --env AZURE_OPENAI_API_KEY=<YOUR_AZURE_OPENAI_API_KEY> --env AZURE_OPENAI_ENDPOINT=<YOUR_AZURE_OPENAI_ENDPOINT> --env EMBEDDING_MODEL=<YOUR_EMBEDDING_MODEL> --env ITGLUE_ADVANCED_TOOLSET=<YOUR_ITGLUE_ADVANCED_TOOLSET> --env VECTOR_INDEX_PATH=<YOUR_VECTOR_INDEX_PATH> -- npx -y mcp-itglue

Related MCP servers

ConnectWise PSA (Manage) MCP server — tickets, time entries, companies, configurations, BYOK

5
TypeScript
MIT
View repository →

Microsoft Planner MCP server — plans, buckets, tasks via Microsoft Graph, ETags handled

4
TypeScript
MIT
View repository →