Skip to main content
Glama

Update Post

postly_update_post
Destructive

Updates editable content, media, labels, social or email/newsletter targets, and schedules for an existing Postly post. Accepts client-provided media references for import in the same action and returns the mutation result, platform readiness, blockers, and any required follow-up data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textNo
mediaNoAlready-hosted media objects for the post. Use the media_file fields instead for attached, generated, selected, local, base64, or temporary media that Postly must import during the create or update action.
labelsNo
post_idYesPostly post ID.
media_fileNoClient-provided file reference or temporary URL for the first attached, selected, or generated media file. Postly imports it during the create or update action. Pass an HTTP(S) or temporary URL here. Some clients may also send a file-reference object.
media_file_2NoClient-provided file reference or temporary URL for the number 2 attached, selected, or generated media file. Postly imports it during the create or update action. Pass an HTTP(S) or temporary URL here. Some clients may also send a file-reference object.
media_file_3NoClient-provided file reference or temporary URL for the number 3 attached, selected, or generated media file. Postly imports it during the create or update action. Pass an HTTP(S) or temporary URL here. Some clients may also send a file-reference object.
media_file_4NoClient-provided file reference or temporary URL for the number 4 attached, selected, or generated media file. Postly imports it during the create or update action. Pass an HTTP(S) or temporary URL here. Some clients may also send a file-reference object.
media_file_5NoClient-provided file reference or temporary URL for the number 5 attached, selected, or generated media file. Postly imports it during the create or update action. Pass an HTTP(S) or temporary URL here. Some clients may also send a file-reference object.
media_file_6NoClient-provided file reference or temporary URL for the number 6 attached, selected, or generated media file. Postly imports it during the create or update action. Pass an HTTP(S) or temporary URL here. Some clients may also send a file-reference object.
media_file_7NoClient-provided file reference or temporary URL for the number 7 attached, selected, or generated media file. Postly imports it during the create or update action. Pass an HTTP(S) or temporary URL here. Some clients may also send a file-reference object.
media_file_8NoClient-provided file reference or temporary URL for the number 8 attached, selected, or generated media file. Postly imports it during the create or update action. Pass an HTTP(S) or temporary URL here. Some clients may also send a file-reference object.
media_file_9NoClient-provided file reference or temporary URL for the number 9 attached, selected, or generated media file. Postly imports it during the create or update action. Pass an HTTP(S) or temporary URL here. Some clients may also send a file-reference object.
email_subjectNoSubject line required when targeting email/newsletter channels.
first_commentNo
media_file_10NoClient-provided file reference or temporary URL for the number 10 attached, selected, or generated media file. Postly imports it during the create or update action. Pass an HTTP(S) or temporary URL here. Some clients may also send a file-reference object.
media_uploadsNoOptional inline upload specs for agents that can supply public URLs, temporary URLs, base64, or data URLs. Postly imports these assets and appends them to media before creating or updating the post.
audience_groupNoAudience group ID or IDs. Do not combine with target_platforms. You may also pass a single string on clients that support that shorthand.
platform_postsNoPlatform-specific overrides. Each item should include identifier and settings. Call postly_get_channel_schema for each selected platform to see required settings and simple capture guidance.
email_targetingNoOptional advanced email targeting map keyed by email integration ID. Each value is a resource ID, a resource object with id, or an array of those. Usually not needed when using email channel_id values returned by postly_list_social_accounts. Property values may use multiple equivalent input shapes; the server normalizes them.
media_alt_textsNoOptional alt text values aligned with media_file, media_file_2, and later media_file fields.
one_off_scheduleNo
target_platformsNoSocial platform names, email/newsletter, provider names, or channel IDs. Use "all" to target all connected publishing targets in the workspace. Email targets require email_subject and text. You may also pass a single string on clients that support that shorthand.
publishing_presetNoOptional workspace publishing preset name. Use instead of publishing_preset_id.
email_preview_textNoOptional short preview text for email/newsletter delivery.
recurring_scheduleNo
publishing_preset_idNoOptional workspace publishing preset ID. When omitted, Postly uses the preset named Default or the oldest saved preset.
use_publishing_presetsNoApply the workspace publishing preset. Defaults to true. Set false only when the user explicitly wants platform defaults instead.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
codeNo
dataNo
promptNo
statusNo
messageNo
next_stepsNo
agent_guidanceNo
ready_platformsNo
blocked_platformsNo
requires_user_inputNo
missing_requirementsNo

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already carry the safety profile (destructiveHint=true, readOnlyHint=false, idempotentHint=false), so no contradiction exists. The description adds genuine behavioral context beyond annotations: client-provided media references are imported in the same action, and the response surfaces mutation result, platform readiness, blockers, and follow-up data. It does not spell out overwrite semantics for existing media/schedules, but that burden is largely covered by the destructive hint.

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

Conciseness4/5

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

Two sentences with no filler, and the core action is front-loaded before the media-import and return-value details. The first sentence's list is dense but earns its place given 28 parameters and nested objects. It is efficient and well-ordered, though slightly heavy relative to the leanest possible phrasing.

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?

For a 28-parameter tool with nested objects, an output schema, and annotations, the description covers the action scope, same-action media import behavior, and what the response reports. It omits explicit sibling-routing guidance, but the rich schema (82% coverage) and its own pointer to postly_get_channel_schema fill most remaining gaps.

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 82%, so the schema already documents the parameters in detail; the description adds only a high-level grouping (content, media, labels, targets, schedules) and notes that media references are imported in the same action. That maps to media_file/media_uploads fields but offers no per-parameter syntax beyond what the schema provides, so baseline 3 is appropriate.

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 ('Updates') and resource ('existing Postly post'), then enumerates the editable dimensions: content, media, labels, social or email/newsletter targets, and schedules. This clearly distinguishes it from siblings like postly_create_post (new post), postly_delete_post (removal), and the read-only get/list tools. The same-action media import and return-value scope further sharpen the tool's identity.

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

Usage Guidelines3/5

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

Usage is implied — use this when modifying an existing Postly post — but the description never names alternatives or states when to prefer this over postly_create_post, postly_delete_post, or postly_upload_media. There are no explicit when/when-not conditions or exclusions, so the agent must infer routing from the siblings and schema references to postly_get_channel_schema.

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