Skip to main content
Glama
robertsmieja

xmatters-mcp

by robertsmieja

Delete a person

xmatters_delete_a_person
Destructive

Delete a person from xMatters by unique ID. Requires explicit confirmation for the removal.

Instructions

Delete a person. DELETE /api/xm/1/people/{personID}. Body fields: none. Reference: https://help.xmatters.com/xmapi/#delete-a-person Requires operator write opt-in and confirm:true; may notify recipients or change tenant data.

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.
confirmYesExplicit approval of this exact mutation. Operator must also enable XMATTERS_ALLOW_WRITES.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior5/5

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

Beyond the annotations' destructiveHint, the description adds concrete behavioral context: operator write opt-in is required, confirm must be true, and the action may notify recipients or change tenant data. It also states the HTTP verb and body expectations, which helps an agent anticipate side effects and authorization needs.

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

Conciseness4/5

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

The description is compact and front-loaded with 'Delete a person' before the endpoint and constraints. Each piece adds information, though the trailing reference and requirement section could use line breaks or punctuation for easier scanning.

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 destructive call with two required parameters and no output schema, the description supplies the key invocation facts: how to target the person, what body/query expectations are, and what authorization and side-effect caveats exist. It does not detail error cases or how the operator opt-in is granted, but the annotations and schema cover the remainder.

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

Parameters4/5

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

The endpoint template 'DELETE /api/xm/1/people/{personID}' clarifies the required path parameter, and 'Body fields: none' removes guesswork about a request body. The confirm requirement is reinforced, though query parameters are left generic by the schema's own description; this is reasonable for a delete operation.

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 opens with the explicit verb-object pair 'Delete a person' and grounds it in the exact HTTP endpoint. This clearly distinguishes it from sibling tools like get_a_person_by_id, create_a_person, and modify_a_person.

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

Usage Guidelines3/5

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

The description states necessary preconditions ('Requires operator write opt-in and confirm:true') and the resource to target, so the intended use is clear. However, it gives no explicit guidance about when to prefer deletion over alternatives such as modify_a_person, or any when-not-to-use scenarios.

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