photo
Send an image to a Telegram chat with a rich-text caption from the terminal.
Instructions
Send a photo to a chat (caption is rich text)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Send an image to a Telegram chat with a rich-text caption from the terminal.
Send a photo to a chat (caption is rich text)
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden, and it discloses only that the caption is rich text. It says nothing about authentication requirements, how the photo binary is supplied, rate limits, or whether the send is reversible.
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?
A single sentence, front-loaded with the verb and resource, with the parenthetical caption detail appended rather than buried. No waste.
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?
Adequate but incomplete for a media-send operation: the description mentions a caption that the schema does not expose, and it never explains how the photo itself is referenced. With no output schema and no annotations, more context was needed to call this correctly.
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?
The schema declares zero parameters, so the baseline is 4. The description adds one piece of meaning beyond the schema by noting that the caption is rich text — relevant because caption does not even appear as a declared property.
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?
States a specific verb+resource (send a photo to a chat), which distinguishes it from setphoto (profile photo) and del_photo (deletion) among siblings. It does not, however, explicitly differentiate itself from the generic send, upload, voice, or album tools that could also plausibly deliver media.
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 on when to use this versus send, upload, album, or voice, nor any prerequisite (e.g. whether the photo must first be uploaded). The agent is left to infer the routing from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.