Skip to main content
Glama

Update Post

update_post

Update a scheduled or draft post's caption, schedule, accounts, media, or platform configs. Cannot update published posts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesPost ID to update
textNoUpdated text
pageIdsNoFacebook page IDs
timezoneNoIANA timezone for the schedule time
mediaUrlsNoUpdated media URLs. Use publicUrl values from upload_media or get_upload_urls
platformsNoUpdated target platforms
contentTypeNo
scheduledAtNoUpdated schedule time (ISO 8601)
thumbnailUrlNoCustom thumbnail image URL for video posts
platformTextsNo
tiktokConfigsNoTikTok per-connection config. Each entry needs connectionId + privacyLevel at minimum
youtubeConfigsNoYouTube per-connection config with video title, tags, privacy, etc.
facebookConfigsNoFacebook per-page config with post type and video title
instagramConfigsNoInstagram per-connection config to set post type (FEED, REEL, STORY)
pinterestConfigsNoPinterest per-connection config. boardId is required for Pinterest posts
tiktokConnectionIdsNoTikTok account connection IDs to post from
blueskyConnectionIdsNoBluesky account connection IDs to post from
threadsConnectionIdsNoThreads account connection IDs to post from
thumbnailTimestampMsNoGenerate thumbnail from video at this timestamp (milliseconds)
twitterConnectionIdsNoX (Twitter) account connection IDs to post from
youtubeConnectionIdsNoYouTube channel connection IDs to post from
linkedinConnectionIdsNoLinkedIn account connection IDs to post from
instagramConnectionIdsNoInstagram account connection IDs to post from
pinterestConnectionIdsNoPinterest account connection IDs to post from

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultNoThe updated post record including its id, status, and scheduled time as returned by the AdaptlyPost API.

TDQS

A3.9/5.0
Behavior3/5

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

The description adds one useful behavioral constraint beyond annotations: published posts cannot be updated. However, it does not disclose whether this is a partial update where omitted fields remain unchanged, or whether all provided fields replace existing values. For an update tool with 24 optional parameters, that semantic is important for correct invocation. The annotations already indicate this is not read-only and not destructive.

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?

The description is two short, information-dense sentences. It front-loads the main purpose and immediately states the most important limitation. There is no filler or repetition of schema content.

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

Completeness3/5

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

Given the tool's complexity—24 parameters across many platform-specific configs—the description is minimal but sufficient for basic selection. It identifies the resource, the allowed updates, and the critical published-post restriction. However, it lacks guidance on update semantics (partial vs full replacement) and on how the various connectionIds and configs interact, which leaves some ambiguity for an agent handling complex multi-platform updates.

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 92%, so the schema already explains the parameters well. The description adds broad categories like 'caption, schedule, accounts, media, or platform configs,' which help orient the agent, but it does not provide parameter-level details beyond what the schema already contains. This is an acceptable baseline 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 clearly states the action ('Update') and the exact resource ('a scheduled or draft post') with the specific fields that can be changed: caption, schedule, accounts, media, or platform configs. It further distinguishes itself by explicitly excluding published posts, which sets it apart from publish_draft and create_post. This gives an agent a precise understanding of what the tool is for.

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 description gives a clear context for when to use the tool: when a scheduled or draft post needs modification. It also provides a key exclusion: cannot update published posts. However, it does not explicitly point to alternative sibling tools like publish_draft or create_post, so the routing guidance is slightly incomplete.

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.2/5.0
Disambiguation4/5

Most tools are clearly separated by resource and action, but get_post and list_post_results both expose per-platform publishing status/errors, which could cause misselection. create_post and bulk_schedule_posts are closely related, though the descriptions make the single-vs-bulk distinction clear.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern: create_post, list_posts, upload_media, retry_failed_platforms, etc. Even multi-word actions like bulk_schedule_posts preserve the same style, making the naming predictable and easy to navigate.

Tool Count5/5

With 12 tools, the set is well-scoped for a social media scheduling server. It covers post lifecycle management, bulk operations, media handling, account discovery, and retries without feeling bloated or sparse.

Completeness5/5

The tool surface covers the full publishing workflow: account listing, media upload, post creation, scheduling, listing, retrieval, updating, deletion, draft publishing, retry, and per-platform result inspection. Limitations like not updating published posts reflect expected platform constraints rather than missing server functionality.

Resources