Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

IT Glue

OCI · GHCR.IO/WYRE-TECHNOLOGY/ITGLUE-MCP:V1.16.3 · SCANNED AUG 22

MCP server for IT Glue — organizations, configurations, passwords, flexible assets, and documents.

42 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security0
  • Malware scan not yet available for this package.Unverified
  • Known CVEs could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.Unverified
  • Install-script risk not yet assessed.Unverified
  • Dependency health could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.Unverified
Provenance & Transparency45
Schema Quality & AI Usability88
  • 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 2687 tokens (~103/item across 26 items; 25 tools + 1 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
  • Supports UI / widget rendering.Pass

Unverified: 2 categories

Categories scored 0 because we could not verify them: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

oci · ghcr.io/wyre-technology/itglue-mcp:v1.16.3

# add to Claude Code
claude mcp add wyre-technology-itglue-mcp -- docker run --rm -i ghcr.io/wyre-technology/itglue-mcp:v1.16.3
# add to Codex CLI
codex mcp add wyre-technology-itglue-mcp -- docker run --rm -i ghcr.io/wyre-technology/itglue-mcp:v1.16.3
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "wyre-technology-itglue-mcp": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-technology/itglue-mcp:v1.16.3"
      ],
      "enabled": true
    }
  }
}
# ~/.hermes/config.yaml
mcp_servers:
  wyre-technology-itglue-mcp:
    command: "docker"
    args: ["run", "--rm", "-i", "ghcr.io/wyre-technology/itglue-mcp:v1.16.3"]
// mcp.json
{
  "mcpServers": {
    "wyre-technology-itglue-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-technology/itglue-mcp:v1.16.3"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 21 Aug 26 42

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 22 Aug 2026 · Analysed oci/ghcr.io/wyre-technology/itglue-mcp:v1.16.3

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem oci
Reason No attestation published
MCP tools · 25 exposed · ~2,670 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
archive_document ~62

⚠ HIGH-IMPACT. Archives an IT Glue document (soft delete — hides it from normal views but keeps it recoverable). Use unarchive_document to restore. Confirm with the user before invoking.

NameTypeReqDescription
document_idnumberyesThe document ID to archive

No output schema declared.

No examples provided.

create_document ~227

Create a new document in IT Glue for an organization. If neither document_folder_id nor skip_folder_prompt is supplied, the user is prompted to pick a folder. Folder enumeration for the name-based picker tries the API key first (works on tenants where IT Glue exposes the Document Folders resource), then a configured JWT; if neither can list folders, the prompt accepts a folder URL, a sibling-document URL, or a numeric folder ID. Pass skip_folder_prompt=true to always create at the organization root without prompting.

NameTypeReqDescription
contentstringDocument content (HTML supported)
document_folder_idnumberOptional folder ID to place the document in. Find folder IDs in the IT Glue web URL (e.g. `/documents/folder/12345/`) or by inspecting `document-folder-id` on an existing document in that folder.
namestringyesDocument name/title
organization_idnumberyesOrganization ID to create the document in
skip_folder_promptbooleanIf true, skip the interactive folder picker and create the document at the organization root.

No output schema declared.

No examples provided.

create_document_section ~94

Add a new section to an IT Glue document. Section types: 'heading' (Document::Heading) or 'text' (Document::Text). Call publish_document after editing.

NameTypeReqDescription
contentstringyesHTML content for the section
document_idnumberyesThe document ID
section_typestringyesSection type: 'heading' for Document::Heading, 'text' for Document::Text

No output schema declared.

No examples provided.

create_location ~192

Create a new location (physical address/site) for an organization in IT Glue. IT Glue requires a name and typically a country_id for a location.

NameTypeReqDescription
address_1stringAddress line 1
address_2stringAddress line 2
citystringCity
country_idnumberCountry ID — IT Glue typically requires this when creating a location. Find country IDs in the IT Glue web UI.
faxstringFax number
namestringyesLocation name/title
notesstringFree-text notes
organization_idnumberyesOrganization ID to create the location in
phonestringPhone number
postal_codestringPostal/ZIP code
primarybooleanWhether this is the organization's primary location
region_idnumberRegion/state ID

No output schema declared.

No examples provided.

delete_document_section ~79

⚠ DESTRUCTIVE — IRREVERSIBLE. Permanently deletes a section from an IT Glue document. This action cannot be undone. Call publish_document after editing. Confirm with the user before invoking.

NameTypeReqDescription
document_idnumberyesThe document ID
section_idnumberyesThe section ID to delete (from list_document_sections)

No output schema declared.

No examples provided.

get_configuration ~33

Get a specific configuration (device/asset) by ID from IT Glue

NameTypeReqDescription
idstringyesThe configuration ID

No output schema declared.

No examples provided.

get_document ~42

Get a specific document by ID from IT Glue

NameTypeReqDescription
idstringyesThe document ID
organization_idnumberyesOrganization ID that owns the document

No output schema declared.

No examples provided.

get_location ~36

Get a specific location by ID from IT Glue, including its full address and phone number.

NameTypeReqDescription
idstringyesThe location ID

No output schema declared.

No examples provided.

get_organization ~29

Get a specific organization by ID from IT Glue

NameTypeReqDescription
idstringyesThe organization ID

No output schema declared.

No examples provided.

get_password ~54

Get a specific password entry by ID from IT Glue (includes the actual password value)

NameTypeReqDescription
idstringyesThe password entry ID
show_passwordbooleanWhether to include the actual password value (default true)

No output schema declared.

No examples provided.

itglue_health_check ~22

Check connectivity to IT Glue API by fetching organization types

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

list_document_folders ~156

List document folders for an organization in IT Glue, returning their names and IDs. Works with your API key on tenants where IT Glue exposes the Document Folders resource (rolling out across tenants in 2026). If the API key is rejected, a JWT is used as a fallback (configure via ITGLUE_JWT env var or X-ITGlue-JWT header, or paste one when prompted).

NameTypeReqDescription
namestringOptional name filter (partial match)
organization_idnumberyesOrganization ID to list folders for
page_numbernumberPage number to retrieve (default 1)
page_sizenumberNumber of results per page (max 1000, default 50)

No output schema declared.

No examples provided.

list_document_sections ~40

List all sections of an IT Glue document in order. Use this to read document content before editing.

NameTypeReqDescription
document_idnumberyesThe document ID

No output schema declared.

No examples provided.

list_flexible_asset_types ~55

List all flexible asset types defined in IT Glue. Call this first to discover type IDs before using search_flexible_assets.

NameTypeReqDescription
organization_idnumberFilter by organization ID (optional — returns global types if omitted)

No output schema declared.

No examples provided.

publish_document ~44

Publish an IT Glue document to make section changes visible. Always call this after creating, updating, or deleting sections.

NameTypeReqDescription
document_idnumberyesThe document ID to publish

No output schema declared.

No examples provided.

search_configurations ~167

Search for configurations (devices/assets) in IT Glue

NameTypeReqDescription
configuration_status_idnumberFilter by configuration status ID
configuration_type_idnumberFilter by configuration type ID
namestringFilter by configuration name (partial match)
organization_idnumberFilter by organization ID
page_numbernumberPage number to retrieve (default 1)
page_sizenumberNumber of results per page (max 1000, default 50)
psa_idstringFilter by PSA integration ID
rmm_idstringFilter by RMM integration ID
serial_numberstringFilter by serial number
sortstringSort field (prefix with - for descending)

No output schema declared.

No examples provided.

search_documents ~160

Search for documents in IT Glue (scoped to an organization). Returns document metadata only (name, folder, URL, timestamps) — not the document body. Use get_document or list_document_sections to read a specific document's content.

NameTypeReqDescription
document_folder_idnumberFilter by document folder ID to search within a specific folder
namestringFilter by document name (partial match)
organization_idnumberyesOrganization ID (required — documents are scoped to organizations)
page_numbernumberPage number to retrieve (default 1)
page_sizenumberNumber of results per page (max 1000, default 50)
sortstringSort field (prefix with - for descending)

No output schema declared.

No examples provided.

search_flexible_assets ~125

Search for flexible assets in IT Glue (requires flexible_asset_type_id filter)

NameTypeReqDescription
flexible_asset_type_idnumberyesRequired: The flexible asset type ID to search within
namestringFilter by flexible asset name (partial match)
organization_idnumberFilter by organization ID
page_numbernumberPage number to retrieve (default 1)
page_sizenumberNumber of results per page (max 1000, default 50)
sortstringSort field (prefix with - for descending)

No output schema declared.

No examples provided.

search_locations ~206

Search for locations (physical addresses/sites) of an organization in IT Glue. Each result includes the address fields and phone number. Locations are a built-in IT Glue entity (not a flexible asset), so use this rather than search_flexible_assets to look up an organization's address or phone.

NameTypeReqDescription
citystringFilter by city
country_idnumberFilter by country ID
namestringFilter by location name (partial match)
organization_idnumberFilter by organization ID (recommended — locations are scoped to organizations)
page_numbernumberPage number to retrieve (default 1)
page_sizenumberNumber of results per page (max 1000, default 50)
psa_idstringFilter by PSA integration ID
region_idnumberFilter by region/state ID
sortstringSort field (prefix with - for descending, e.g., '-name')

No output schema declared.

No examples provided.

search_organizations ~133

Search for organizations in IT Glue with optional filtering

NameTypeReqDescription
namestringFilter by organization name (partial match)
organization_status_idnumberFilter by organization status ID
organization_type_idnumberFilter by organization type ID
page_numbernumberPage number to retrieve (default 1)
page_sizenumberNumber of results per page (max 1000, default 50)
psa_idstringFilter by PSA integration ID
sortstringSort field (prefix with - for descending, e.g., '-name')

No output schema declared.

No examples provided.

search_passwords ~139

Search for password entries in IT Glue (returns metadata only, not actual passwords)

NameTypeReqDescription
namestringFilter by password entry name (partial match)
organization_idnumberFilter by organization ID
page_numbernumberPage number to retrieve (default 1)
page_sizenumberNumber of results per page (max 1000, default 50)
password_category_idnumberFilter by password category ID
sortstringSort field (prefix with - for descending)
urlstringFilter by URL
usernamestringFilter by username

No output schema declared.

No examples provided.

search_user_metrics ~269

Search IT Glue user activity metrics — per-user, per-organization, per-resource-type counts of created/viewed/edited/deleted actions, bucketed by date. This is the raw data behind IT Glue's user reputation scores. The date range may span at most 7 days end-to-start; end_date requires a start_date (IT Glue rejects an open start).

NameTypeReqDescription
end_datestringEnd of the UTC date range, YYYY-MM-DD. Omit for an open end. The range may not exceed 7 days.
organization_idnumberFilter by organization ID
page_numbernumberPage number (default 1)
page_sizenumberNumber of results per page (max 1000, default 50)
resource_typestringFilter by resource type the activity was against (e.g. Configuration, Password, Document, FlexibleAsset)
sortstringSort field: id, created, viewed, edited, deleted, or date. Prefix with - for descending.
start_datestringStart of the UTC date range, YYYY-MM-DD. Omit for an open start. The range may not exceed 7 days.
user_idnumberFilter by IT Glue user ID

No output schema declared.

No examples provided.

unarchive_document ~62

⚠ HIGH-IMPACT. Restores a previously archived IT Glue document so it appears in normal views again. This makes the document visible to all users. Confirm with the user before invoking.

NameTypeReqDescription
document_idnumberyesThe document ID to unarchive

No output schema declared.

No examples provided.

update_document_section ~75

Update the content of an existing IT Glue document section. Use list_document_sections to get section IDs. Call publish_document after editing.

NameTypeReqDescription
contentstringyesNew HTML content for the section
document_idnumberyesThe document ID
section_idnumberyesThe section ID (from list_document_sections)

No output schema declared.

No examples provided.

update_location ~169

Update an existing location in IT Glue. Only the fields you supply are changed.

NameTypeReqDescription
address_1stringAddress line 1
address_2stringAddress line 2
citystringCity
country_idnumberCountry ID
faxstringFax number
idstringyesThe location ID to update
namestringLocation name/title
notesstringFree-text notes
organization_idnumberyesOrganization ID that owns the location
phonestringPhone number
postal_codestringPostal/ZIP code
primarybooleanWhether this is the organization's primary location
region_idnumberRegion/state ID

No output schema declared.

No examples provided.