delete_post
Delete a scheduled post (cannot delete published posts)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| postId | Yes | ID of the post to delete | |
| platform | Yes | Platform the post is on |
Delete a scheduled post (cannot delete published posts)
| Name | Required | Description | Default |
|---|---|---|---|
| postId | Yes | ID of the post to delete | |
| platform | Yes | Platform the post is on |
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?
With no annotations provided, the description carries the full burden. It discloses that the tool operates on scheduled posts and not published ones, but omits other behavioral traits such as irreversibility, required permissions, or error handling. This is partial disclosure but not rich.
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 a single, front-loaded sentence that states the action and the key constraint in a parenthetical. No wasted words, every phrase earns its place.
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 delete tool with no output schema, the description covers the primary purpose and limitation. However, it does not mention success/error behavior, which would improve completeness, but the core functionality is adequately specified.
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 coverage is 100%, with clear descriptions for both postId and platform. The tool description adds no additional parameter context, so the baseline of 3 applies as the schema already handles semantics.
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 clearly identifies the action (delete) and specific resource (scheduled post), and distinguishes itself from siblings by stating it cannot delete published posts. This gives a precise scope that differentiates it from update_post and schedule_post.
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?
It provides clear context on when to use the tool (for scheduled posts) and an explicit exclusion (published posts). However, it does not explicitly name alternative tools for published posts, though none appear in the sibling list, making the guidance adequate but not exhaustive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.