del_photo
Delete the profile photo of a chat with termgram to clear a Telegram chat's current profile picture.
Instructions
Remove the profile photo of a chat
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Delete the profile photo of a chat with termgram to clear a Telegram chat's current profile picture.
Remove the profile photo of a chat
| 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?
No annotations are provided, so the description carries the full behavioral burden. 'Remove' implies a destructive, likely irreversible mutation, but the description does not say whether the deletion is permanent, whether it requires admin/ownership rights in the chat, or what happens if no photo is set.
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 short sentence with the action verb front-loaded and no wasted words. It is appropriately sized, though it is perhaps overly terse given it is a destructive operation.
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 simple zero-parameter tool the core intent is conveyed, but with no annotations and no output schema, the description omits behavioral details (irreversibility, permission requirements, error conditions) that an agent invoking a destructive mutation would benefit from.
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 tool takes zero parameters, so there is nothing for the description to clarify beyond what the empty schema already conveys. Baseline 4 applies for a parameterless operation.
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 gives a specific verb (Remove) and resource (profile photo of a chat), which is clearer than the generic 'delete' sibling. However, it does not explicitly distinguish itself from close siblings like 'setphoto', 'photo', or 'profile', so an agent must infer the boundary.
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?
There is no guidance on when to use this tool versus alternatives such as 'setphoto' (which could also clear a photo) or the generic 'delete'. No prerequisites, conditions, or exclusions are stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.