Skip to main content
Glama
robertsmieja

xmatters-mcp

by robertsmieja

Modify a subscription form

xmatters_modify_a_subscription_form
Destructive

Modify an existing xMatters subscription form to update its configuration, such as fields, scope, and notification settings, for accurate subscription handling.

Instructions

Modify a subscription form. POST /api/xm/1/plans/{planId}/subscription-forms. Body fields: id, name, description, scope, form, oneWay, subscribeOthers, notificationDelay, propertyDefinitions, roles, devicesSectionCollapsed, devicesSectionVisible, targetDeviceNames. Reference: https://help.xmatters.com/xmapi/#modify-a-subscription-form Requires operator write opt-in and confirm:true; may notify recipients or change tenant data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYesComplete API JSON payload (including nested fields). See https://help.xmatters.com/xmapi/#modify-a-subscription-form
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.4/5.0
Behavior5/5

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

Beyond the annotations, the description adds crucial behavioral context: it requires operator write opt-in and confirm:true, and warns that the operation may notify recipients or change tenant data. This meaningfully informs the agent about side effects and permissions.

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 dense but efficient: action, endpoint, body fields, reference, and safety requirements are all included with no filler. The key mutation purpose is front-loaded.

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?

The description covers purpose, valid body fields, endpoint, prerequisites, side effects, and points to the official reference. It does not describe the response shape, but there is no output schema and the reference URL helps fill that gap.

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 schema already documents path.planId and confirm, and the description adds a list of acceptable body fields (id, name, description, scope, form, etc.) that the generic body schema does not enumerate. It doesn't describe field types or defaults, but it does add practical meaning beyond the schema.

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 states a specific verb ('Modify'), a clear resource ('a subscription form'), and the exact API endpoint, with a list of body fields. This makes it easy to distinguish from sibling tools like create_a_subscription_form or get_a_subscription_form.

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 usage is implied by the verb and resource, and the description gives explicit prerequisites: operator write opt-in and confirm:true. However, it does not explicitly contrast this tool with create_a_subscription_form or other alternatives, so the agent must infer the selection context.

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