MCP tool changes

posterly's MCP server now has 59 tools covering 91 actions. What moved where, when the old names stop working, and what to update.

Last updated Sep 24, 2026Updated this week

posterly's MCP server was reorganised so your AI assistant has fewer, clearer tools to choose from. Nothing was removed: 38 tools were folded into related tools as a view (for reads) or an action (for changes). The hosted endpoint now has 59 tools covering 91 actions, and the npm package has 62 tools covering 94 actions.

The REST API did not change. Only MCP tool names moved.

Do I need to do anything?

  • You only chat with your assistant (ChatGPT, Claude, Cursor, Poke, and so on): no action needed. Your assistant picks up the new tools the next time it loads the tool list. In ChatGPT, if the assistant still offers old tools, refresh the posterly connector in ChatGPT's app settings (or disconnect and reconnect it).
  • You use the npm package with npx -y posterly-mcp-server@latest: restart your MCP client to load version 0.45.0. A version you pinned yourself keeps its old tool list until you upgrade.
  • You have scripts, agent skills, saved prompts, or automations that call tools by name: switch them to the new names below. The old names keep working until the date below, so nothing breaks today.
  • You approved tools with "always allow" (or keep an allowlist, for example Claude Code's permission settings): those approvals are tied to the old tool names and do not carry over. Your client asks once for each new tool; approve it again, or update your allowlist entries to the new names (for example mcp__posterly__list_analytics instead of mcp__posterly__get_post_analytics).

When the old names stop working

The old names are hidden aliases. They are not listed any more, but a call to an old name still runs the new tool and returns the same result as before, plus a short note at the end naming the new call. Two small differences: empty cells in account tables now read "n/a", and on the hosted endpoint an old name now rejects fields it does not use (fields sent as empty or null are simply ignored). The old names may stop working after 12 January 2027 (2027-01-12). Move to the new names before then.

Until that date, an old name also keeps its old one-step confirm: confirm: true alone still runs it. The new names use preview then confirm for public and destructive actions (see below).

Preview then confirm

Actions that post publicly or delete things now take two calls on the new names:

  1. Call the tool without confirm. Nothing changes. You get a plain summary of what will happen and a preview_id.
  2. Show the preview to the user. Only after they approve, call again with the same fields plus confirm: true and that preview_id.

A preview expires after 10 minutes and only works for exactly the same fields and the same user. Public posts (a comment reply, a DM, a Google review reply, new Google profile media) can be confirmed once, so a retried call never posts twice. Other changes keep a single confirm: true after the user confirms.

For example, replying to a comment:

{ "name": "manage_comment", "arguments": { "action": "reply", "comment_id": "c_123", "content": "Thank you!" } }

returns a preview with a preview_id. After the user approves:

{ "name": "manage_comment", "arguments": { "action": "reply", "comment_id": "c_123", "content": "Thank you!", "confirm": true, "preview_id": "pv1...." } }

What moved where

Each row shows the old name, the tool it moved into, and the view, action, or parameter that picks the same behaviour. All other arguments stay the same.

Status and accounts

Old nameNew toolHow to call itPreview first
get_mcp_statuswhoamiview: "status"No
get_connect_sessionlist_accountsview: "connect_session"No
get_learned_voicelist_accountsview: "learned_voice"No
get_performance_profilelist_accountsview: "performance_profile"No

Platforms and connection links

Old nameNew toolHow to call itPreview first
get_platform_schemalist_platformsview: "schema"No
get_connect_linklist_platformsview: "connect_link" (the old platform parameter is now target)No

Brands

Old nameNew toolHow to call itPreview first
get_brandlist_brandsview: "brand"No
list_brand_accountslist_brandsview: "accounts"No
get_brand_profilelist_brandsview: "profile"No

Posts

Old nameNew toolHow to call itPreview first
get_post_missingget_postview: "missing"No
update_post_statusupdate_postpass statusNo
update_post_release_idupdate_postpass release_idNo
delete_post_groupdelete_postpass group_idYes

Media

Old nameNew toolHow to call itPreview first
upload_media_from_urlupload_mediapass urlNo

Analytics

Old nameNew toolHow to call itPreview first
get_account_analyticslist_analyticsview: "accounts"No
get_post_analyticslist_analyticsview: "posts"No
get_post_insightslist_analyticsview: "insights"No

AI jobs

Old nameNew toolHow to call itPreview first
get_image_joblist_jobstype: "image"No
get_video_joblist_jobstype: "video"No

Inbox comments

Old nameNew toolHow to call itPreview first
get_commentlist_commentspass comment_idNo
reply_to_commentmanage_commentaction: "reply"Yes
update_commentmanage_commentaction: "update"No
delete_commentmanage_commentaction: "delete"Yes

Inbox DMs

Old nameNew toolHow to call itPreview first
get_conversationlist_conversationspass conversation_idNo
send_messagemanage_conversationaction: "send"Yes
sync_inboxmanage_conversationaction: "sync"No

Google Business reviews

Old nameNew toolHow to call itPreview first
get_google_business_review_linklist_google_business_reviewsview: "review_link"No
suggest_google_business_review_replymanage_google_business_reviewaction: "suggest_reply"No
reply_google_business_reviewmanage_google_business_reviewaction: "reply"Yes
delete_google_business_review_replymanage_google_business_reviewaction: "delete_reply"Yes

Google Business profile media

Old nameNew toolHow to call itPreview first
add_google_business_mediamanage_google_business_mediaaction: "add"Yes
delete_google_business_mediamanage_google_business_mediaaction: "delete"Yes

Webhooks

Old nameNew toolHow to call itPreview first
update_webhookmanage_webhookaction: "update"No
delete_webhookmanage_webhookaction: "delete"Yes
test_webhookmanage_webhookaction: "test"No

OAuth developer clients

Old nameNew toolHow to call itPreview first
create_oauth_clientmanage_oauth_clientaction: "create"No
update_oauth_clientmanage_oauth_clientaction: "update"No
delete_oauth_clientmanage_oauth_clientaction: "delete"Yes

Tools that kept their names

whoami, list_accounts, list_platforms, list_brands, get_post, update_post, delete_post, upload_media, list_comments, list_conversations, and list_google_business_reviews kept their names and now also cover the tools merged into them. Called the old way (without a view or the new parameters), each behaves exactly as before. Every other tool is unchanged. The full list with every view and action is on the MCP Server page.

Tool sets

Tools are now grouped into sets: core, creative, inbox, google_business, admin, and billing (plus signup on the npm package). Every set is on by default, so you do not need to change anything. If you want your assistant to see fewer tools, set POSTERLY_TOOLSETS=core,inbox for the npm package, or add ?toolsets=core,inbox to the endpoint URL when you connect with an API key. Any tool can still be called by name. Details: MCP Server.