Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

create_settings_notifications_telegram_test

Idempotent

Test Telegram notification settings by sending a test message. Verify that the bot token and chat ID are properly configured for alerts.

Instructions

Test Telegram settings.

POST /api/v1/settings/notifications/telegram/test

Args: body: Request payload. Read the matching GET or the /schema endpoint first to see the fields this resource expects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

Annotations indicate the operation is a mutation (readOnlyHint false), idempotent (idempotentHint true), and non-destructive (destructiveHint false). The description adds only 'Test', which hints at a side effect (likely sending a test message) but does not confirm what happens or what the response signifies. It does not elaborate on behavior beyond the annotation cues, which is insufficient for a tool that likely triggers notifications.

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 short and front-loaded with the core purpose. The endpoint and argument note are presented cleanly. No wasteful sentences; it earns its length. The only minor issue is that it could be slightly more informative without bloating.

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

Completeness2/5

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

Given this is a test tool with a generic body object and an output schema (not shown), the description should explain the expected payload fields, the effect of the test, and how to interpret the response. Instead, it only points to external endpoints. An agent cannot invoke it successfully without extra investigation, and the description lacks sufficient context to know what 'test' accomplishes.

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

Parameters2/5

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

The only parameter 'body' is an object with additionalProperties true, and schema description coverage is 0%. The description merely says 'Request payload' and tells the agent to read the GET or /schema endpoint. This is a deferral rather than a description of fields, so it does not compensate for the lack of schema detail. An agent still cannot construct a valid payload without making an extra call.

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

Purpose4/5

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

The description states 'Test Telegram settings' – a clear verb (test) and resource (Telegram settings). This distinguishes it from non-test variants like create_settings_notifications_telegram and from test tools for other providers (e.g., _discord_test, _email_test). However, it doesn't explicitly explain what 'test' entails (e.g., sending a test notification), leaving some ambiguity.

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 advises reading the matching GET or /schema endpoint first, which provides situational guidance on how to obtain the payload shape. But it does not state when to use this tool instead of – or in combination with – other settings tools, nor does it mention any alternatives or exclusions. Usage context is mostly implied by the tool name.

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