list_scheduled_posts
Posts committed to publish in the coming days.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| days | No |
Posts committed to publish in the coming days.
| Name | Required | Description | Default |
|---|---|---|---|
| days | No |
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, the description must carry behavioral disclosure. It adds the useful facts that these posts are 'committed' and scheduled 'in the coming days,' but it does not state read-only behavior, default window, ordering, or pagination. The list_* name makes non-destructive behavior inferable, so this is slightly above absent but still minimal.
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 compact with no wasted words, and the temporal scope is front and center. However, it is a noun phrase rather than a verb-led directive, so the structure is slightly less clear than it could be.
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 tool with no output schema and no annotations, the description leaves out the effect of the days parameter, return value shape, and any default behavior. It names the domain but is not sufficient for an agent to decide whether to pass days or what result to expect.
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 provides no description for the single 'days' parameter (0% coverage), so the description must compensate. The phrase 'in the coming days' hints at the parameter's purpose, but it never explains that days controls the lookahead window, its default, or its units, leaving the only user-configurable behavior underspecified.
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 identifies the resource (posts committed to publish in the coming days) and, together with the tool name, makes clear this is a listing operation. It does not use an action verb or explicitly differentiate from schedule_post/cancel_scheduled_post, but the scope is specific enough to avoid confusion with other list_* siblings.
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 call this tool versus schedule_post, cancel_scheduled_post, or publish_now, and no mention of prerequisites. The intended use is only implied by the name and the noun-phrase description, so an agent gets no decision support.
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 targets a distinct action in the content workflow: planning, composing, approving, scheduling, canceling, publishing, querying, and analytics. Even similar actions like schedule_post and publish_now are clearly separated by timing and irreversibility.
Tool names consistently use snake_case verbs followed by nouns (list_channels, compose_post, cancel_scheduled_post). The pattern is predictable and makes resource-action relationships easy to infer.
14 tools is well-scoped for a content planning and social publishing server. Each tool covers a meaningful step in the workflow without redundant or excessive additions.
The set covers the core content lifecycle: plan, compose, approve, schedule, publish, cancel, and analyze. Minor gaps exist around editing existing drafts or directly modifying plan items, but these can be worked around with the provided tools.