Skip to main content
Glama
robertsmieja

xmatters-mcp

by robertsmieja

Get an integration

xmatters_get_an_integration
Read-onlyIdempotent

Retrieve a specific integration from an xMatters plan by providing the plan ID and integration ID to access its configuration and details.

Instructions

Get an integration. GET /api/xm/1/plans/{planId}/integrations/{integrationId}. Body fields: none. Reference: https://help.xmatters.com/xmapi/#get-an-integration

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
queryNoAPI query parameters; arrays are comma-joined. Documented names: none. Pagination is explicit using offset and limit; results are not automatically combined.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly, idempotent, and non-destructive behavior, so the description does not need to restate safety. It does add the HTTP method and 'Body fields: none', but it omits error behavior, authentication needs, or what happens when IDs are invalid.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two short sentences with no filler: a clear statement of the operation, the endpoint, the body expectation, and a documentation reference. Every element earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only GET, the description plus schema and annotations cover the call shape, safety, and parameters. The main gap is the lack of any description of the response shape, and since there is no output schema, a brief note about the returned integration would make it fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The endpoint template clarifies that planId and integrationId are path parameters, and the description explicitly states there is no body. However, it does not explain the semantic meaning of planId or integrationId beyond their names, and the schema already documents the query parameter behavior.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb and resource ('Get an integration') and gives the exact endpoint with planId and integrationId, making the singular retrieval operation unmistakable. This clearly distinguishes it from sibling tools like xmatters_get_integrations (list) and xmatters_get_integration_logs.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is given about when to use this tool versus alternatives such as xmatters_get_integrations or xmatters_get_integration_logs. The description is purely operational and does not state prerequisites, exclusions, or a decision rule for selecting this tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools