Skip to main content
Glama

Validate Post

postly_validate_post
Read-onlyIdempotent

Checks proposed post text, media, platform settings, schedules, and targets against Postly and platform-specific requirements. Returns validation status, errors, warnings, platform readiness, and applicable limits.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textNoPost text or caption to validate.
mediaNoOptional media objects that will be attached to the post.
workspace_idYesPostly workspace ID.
email_subjectNoRequired when validating a post for email/newsletter targets.
platform_postsNoOptional platform-specific overrides. Use postly_get_channel_schema for the selected platform before supplying settings.
target_platformsNoOptional platform names, email/newsletter, provider names, or channel IDs. Use "all" or omit to validate against all connected workspace publishing targets. You may also pass a single string on clients that support that shorthand.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailNo
validNo
errorsNo
limitsNo
warningsNo
platformsNo
agent_guidanceNo

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the agent knows it is a safe read operation. The description adds behavioral detail by specifying what is returned: validation status, errors, warnings, platform readiness, and applicable limits. This goes beyond the annotations without contradicting them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the core action, no redundant phrasing. The first sentence states what it checks; the second states what it returns. Every word contributes value.

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

Completeness4/5

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

The tool has a large schema and an output schema, which already carry detailed parameter and return information. The description captures the essential purpose and output scope. It doesn't mention prerequisites like workspace_id or the recommendation to call postly_get_channel_schema, but those are in the schema, so the description is adequate in context.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema already documents every parameter. The description groups params into categories (text, media, platform settings, schedules, targets) which helps orient the agent, but it adds no new syntax or format details. Baseline 3 is appropriate given the high schema coverage.

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

Purpose5/5

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

The description uses a specific verb ('Checks') and clearly identifies the resource ('proposed post text, media, platform settings, schedules, and targets') and the validation target ('against Postly and platform-specific requirements'). It distinguishes from sibling tools like create_post or get_post_status by focusing on pre-publication validation and lists return types (validation status, errors, warnings, platform readiness, limits).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The word 'proposed' implies the tool is for validating a draft before publishing, giving clear contextual use. However, it does not explicitly name alternatives (e.g., 'use before create_post') or state when not to use it, so it stops short of the highest score.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: posts, analytics, media, schema, validation, targets, and organizational metadata are clearly separated. Even similar getters (post, post_status, post_analytics, publishing_activity) have explicit scopes that prevent misselection.

Naming Consistency5/5

All tools follow the consistent `postly_<verb>_<noun>` pattern in lowercase snake_case. Verbs like create, get, list, update, delete, upload, validate, and resolve are used uniformly, making the API predictable and easy to navigate.

Tool Count4/5

At 18 tools, the set is slightly above the typical 3-15 range, but every tool serves a distinct purpose in the social media publishing lifecycle. The count is justified for a comprehensive MCP, though a few could potentially be consolidated without loss of clarity.

Completeness5/5

The tool surface covers the full post lifecycle (create, read, update, delete, list), scheduling, publishing activity, analytics for both accounts and posts, media upload, channel schema validation, and target resolution. No obvious dead ends or critical missing operations for the intended domain.

Resources