Get a monitor subscription
get_monitor_subscriptionReturns one account-owned subscription and its current policy and scan state.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| subscriptionId | Yes |
get_monitor_subscriptionReturns one account-owned subscription and its current policy and scan state.
| Name | Required | Description | Default |
|---|---|---|---|
| subscriptionId | Yes |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish readOnly, idempotent, and non-destructive behavior; the description adds useful context beyond that by specifying that the subscription is account-owned and that the returned data includes current policy and scan state. It does not contradict the annotations, and no additional side-effect disclosure is needed for a read-only getter.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one front-loaded sentence with no filler; every word adds information about scope, ownership, or returned content. It is appropriately sized for a simple read-only getter.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter read-only tool with strong annotations and no output schema, the description is largely sufficient: it states ownership scope, cardinality, and the high-level return content. Minor omissions such as not-found behavior and explicit alternatives prevent a perfect score.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, yet the description never mentions subscriptionId or explains how it identifies the target subscription. The parameter name and UUID format in the schema provide some implicit meaning, but the description adds no parameter semantics and thereby fails to compensate for the low coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Returns') and names a precise resource: one account-owned subscription, including its current policy and scan state. This differentiates it from list_monitor_subscriptions (one vs many) and get_monitor_alert (different resource type).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given about when to choose this tool over siblings such as list_monitor_subscriptions or get_monitor_alert. The description states what it returns but never mentions alternatives, exclusions, or usage scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool pairs a single verb with a distinct resource or action, and descriptions explicitly separate state-changing, state-free, verification, and list/get operations. Even similar tools like the two challenge creators are clearly differentiated by challenge type (DNS TXT vs endpoint), so misselection is unlikely.
All tools follow a consistent verb_noun pattern using clear verbs like create, get, list, register, stop, update, and verify. The monitor_ prefix is used uniformly for monitor-related resources, while distinct domains such as risk and capabilities have their own readable nouns.
At 17 tools, the set is slightly heavier than the typical well-scoped range, but each tool covers a distinct operation across subscriptions, endpoints, alerts, policy evaluation, and risk verification. The count is reasonable given the breadth of the platform.
Core read and write operations exist for subscriptions, endpoints, and alerts, but lifecycle coverage has notable gaps: there is no endpoint get/update/delete, no subscription activation/resume, and no way to enable delivery after verification. Several workflows end at stopped or pending states unless external actions occur.