← Back to Plugins
MCP Server MCP

IT Glue

github By github 👁 1 views ▲ 0 votes

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

Homepage Verified source GitHub

Install

npx -y [email protected]

Configuration Example

{
  "remotes": [],
  "packages": [
    {
      "registryType": "npm",
      "registryBaseUrl": "https://registry.npmjs.org",
      "identifier": "mcp-itglue",
      "version": "0.4.1",
      "runtimeHint": "npx",
      "transport": {
        "type": "stdio"
      },
      "environmentVariables": [
        {
          "description": "IT Glue API key (Account → Settings → API Keys)",
          "isRequired": true,
          "isSecret": true,
          "name": "ITGLUE_API_KEY"
        },
        {
          "description": "IT Glue region: us, eu, or au",
          "default": "us",
          "name": "ITGLUE_REGION"
        },
        {
          "description": "Full API base URL (overrides ITGLUE_REGION)",
          "name": "ITGLUE_BASE_URL"
        },
        {
          "description": "OpenAI API key — enables semantic vector search tools",
          "isSecret": true,
          "name": "OPENAI_API_KEY"
        },
        {
          "description": "Azure OpenAI API key — enables vector search via Azure (requires AZURE_OPENAI_ENDPOINT)",
          "isSecret": true,
          "name": "AZURE_OPENAI_API_KEY"
        },
        {
          "description": "Azure OpenAI endpoint URL",
          "name": "AZURE_OPENAI_ENDPOINT"
        },
        {
          "description": "Embedding model or Azure deployment name",
          "default": "text-embedding-3-small",
          "name": "EMBEDDING_MODEL"
        },
        {
          "description": "true/1 registers the advanced toolset (itglue_get, itglue_find_endpoint) — an opt-in read-only escape hatch; password resources stay blocked",
          "default": "false",
          "name": "ITGLUE_ADVANCED_TOOLSET"
        },
        {
          "description": "Path of the persisted vector index file",
          "default": "./vector-index.json",
          "name": "VECTOR_INDEX_PATH"
        }
      ]
    }
  ]
}
mcp model-context-protocol npm

Comments

Sign in to leave a comment

Loading comments...