PostMCP MCP Server
OfficialPostMCP MCP Server connects AI assistants to social media publishing, letting you manage workspaces, accounts, brand kits, and posts across LinkedIn, X, Facebook, Instagram, Threads, and Bluesky.
Manage workspaces and accounts: List workspaces, connected accounts, and check token health.
Read user info: View plan, credit balance, AI tokens, and active workspace.
List and fetch posts: Query the post queue with filters, and retrieve full post details including delivery status and errors.
Create and publish posts: Draft, schedule, or immediately publish to specific profiles or platforms, with per-profile copy variants and media.
Edit and reschedule: Update content, targets, schedule, or status; reschedule or reset stuck posts.
Delete posts: Cancel scheduled or failed posts.
Preflight checks: Dry-run test character limits, profile connectivity, media requirements, and credit cost before publishing.
Generate images: Create post images via AI prompts, optionally using brand kits or style references.
Batch operations: Use
multicallto run up to 20 tools in one request, with validation before execution.
Allows AI assistants to create, schedule, and publish social media posts to Bluesky.
Allows AI assistants to create, schedule, and publish social media posts to Facebook.
Allows AI assistants to create, schedule, and publish social media posts to Instagram.
Allows AI assistants to create, schedule, and publish social media posts to Threads.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@PostMCP MCP ServerSchedule a post on LinkedIn and Twitter for tomorrow at 10am"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
PostMCP AI Model Context Protocol (MCP) Server
Official PostMCP AI Model Context Protocol (MCP) Server. Connect your social media publishing pipelines directly into AI assistants, desktop applications, IDE workflows, and web environments like Claude Desktop, Claude.ai, Cursor, and ChatGPT Custom GPTs.
Supported platforms include LinkedIn, X (Twitter), Facebook, Instagram, Threads, and Bluesky.
๐ Features & Capabilities
๐ค 15 Built-in Tools: Workspaces, connected accounts and their token health, brand kits, the post queue, pre-flight checks, create/schedule/reschedule/publish/retry/delete, and image generation.
โก Dual Transport Modes: Native Stdio mode (for local desktop apps & IDEs) and Streamable HTTP mode (for web services, Claude.ai, and remote connectors).
๐ Flexible Authentication: Auto-detects API key from environment variables (
POSTMCPAI_API_KEY), URL query parameters (?apikey=YOUR_KEY), or HTTP authorization headers (x-api-key,Bearer token).๐๏ธ Multi-Workspace Aware: The API key carries its own workspace, so a bare key is enough. To act on another one, every tool takes an optional
workspaceId, also settable per connection (?projectId=...,x-project-id) or per process (POSTMCPAI_PROJECT_ID).๐ค ChatGPT Actions Compatible: Includes built-in OpenAPI 3.0 specification generator (
/openapi.json) and REST endpoints (/api/tools/:name) for ChatGPT Custom GPT integration.๐ OAuth 2.0 & RFC 9728 Support: Advertises PKCE authorization server metadata for seamless dynamic client registration with Claude.ai.
Related MCP server: @posteverywhere/mcp
๐ Repository Architecture
mcp-server/
โโโ bin/
โ โโโ cli.js # Executable CLI entry point (Stdio / HTTP mode runner)
โโโ src/
โ โโโ config.js # Centralized configuration & environment loader
โ โโโ client.js # Backend API client, API key & workspace extraction
โ โโโ platforms.js # Platform limits, credit pricing & post cost helper
โ โโโ tools/
โ โ โโโ definitions.js# MCP tool JSON schemas & parameter specifications
โ โ โโโ handlers.js # MCP tool execution handlers
โ โ โโโ index.js # Tool definitions aggregator
โ โโโ server.js # MCP Server instance factory
โ โโโ routes/
โ โ โโโ oauth.js # OAuth 2.0 & RFC 9728 discovery endpoints
โ โ โโโ openapi.js # OpenAPI 3.0 schema & ChatGPT REST endpoints
โ โ โโโ mcpHttp.js # MCP Streamable HTTP transport (/mcp)
โ โ โโโ health.js # Health check & system metadata endpoints
โ โโโ app.js # Express application factory
โ โโโ index.js # Main library entry point
โโโ index.js # Executable wrapper script
โโโ package.json
โโโ README.mdโ๏ธ Environment Configuration
Environment Variable | Description | Default Value |
| Required. Your secret API key from the PostMCP AI dashboard. |
|
| The API root URL of your PostMCP AI backend service. |
|
| Optional. Overrides the workspace the API key is bound to. Overridden in turn by a call's | The workspace the API key was issued from |
| Setting this launches the server in Remote Streamable HTTP Mode. |
|
๐ ๏ธ MCP Tools Reference
Every tool below also accepts an optional workspaceId (from list_workspaces) to act on a specific workspace.
Reading
Tool Name | Description | Required | Optional |
| Authenticated user: plan, credit balance, AI tokens, active workspace and role. | โ |
|
| Every workspace the user belongs to, with ids, roles, and connected platforms. | โ | โ |
| Connected social profiles with the | โ |
|
| Connections whose token expired or is close to it and need reconnecting. | โ |
|
| Brand kits: tone, audience, keywords, style images. | โ |
|
| Post queue, newest first, with per-profile delivery status, pagination and counts. | โ |
|
| One post in full: which profiles received it, live URLs, and per-profile errors. |
| โ |
Writing
Tool Name | Description | Required | Optional |
| Dry run: character limits, unconnected profiles, missing media, credit cost. Publishes nothing. |
|
|
| Draft, schedule, or immediately publish a post to named profiles. Each profile becomes its own post with its own id. |
|
|
| Publish an existing post immediately; also retries a failed post, skipping delivered profiles. |
| โ |
| Update content, target profiles, schedule, media, or status. |
|
|
| Move a post to a new slot, keeping copy and targets. Re-arms failed and draft posts. |
|
|
| Release a post stuck mid-publish so it can be retried. Delivered profiles keep their state. |
|
|
| Cancel and delete a scheduled or failed post. |
| โ |
| Generate a post image and return its hosted URL for |
|
|
Batching
Tool Name | Description | Required | Optional |
| Run up to 20 of the tools above in one request, in order. Tool names are validated before anything executes, so a typo cannot leave half a batch written. Cannot nest. |
|
|
{
"calls": [
{ "id": "img", "tool": "generate_image", "arguments": { "prompt": "launch banner" } },
{
"tool": "create_post",
"arguments": {
"content": "We shipped it ๐",
"targetAccounts": [
{ "platform": "linkedin", "profileId": "lin_7741903" },
{ "platform": "twitter", "profileId": "tw_1293847", "content": "We shipped it ๐" }
],
"scheduleDate": "2026-09-01",
"scheduleTime": "10:00",
"timezone": "Asia/Kolkata"
}
}
],
"stopOnError": true
}The reply carries one entry per call โ { id, tool, ok, result } or { id, tool, ok: false, error } โ plus counts and, when a failure stopped the batch, the calls that were skipped.
Notes for clients
Target profiles, not platforms.
targetAccountssends only to the profiles named;platformsfans out to every connected profile on each platform.One post per profile.
create_poststores a separate post per targeted profile, so each can be edited, retried or cancelled on its own. Give per-profile copy throughtargetAccounts[].contentor thevariantsmap.Always pass
timezonewhen a wall-clock time matters. The backend defaults to UTC, so a 9:00 IST post scheduled without a zone goes out at 14:30 IST.Credits are charged per profile delivered to (X/Twitter costs 5, others 1), plus a one-off 50-credit surcharge when the copy contains a link.
preflight_postreports this before you commit.
๐ป Client Integration Guides
1. Claude Desktop App (Stdio Mode)
Add the configuration below to your Claude Desktop config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"postmcpai": {
"command": "npx",
"args": ["-y", "@postmcpai/server"],
"env": {
"POSTMCPAI_API_KEY": "pmcp_sec_your_secret_api_key_here",
"POSTMCPAI_API_URL": "http://localhost:5023"
}
}
}
}2. Cursor IDE
Open Cursor Settings -> Features -> MCP.
Click + Add New MCP Server.
Fill in the details:
Name:
postmcpaiType:
commandCommand:
npx -y @postmcpai/server
Under Environment Variables, add:
POSTMCPAI_API_KEY=pmcp_sec_your_secret_api_key_herePOSTMCPAI_API_URL=http://localhost:5023
Click Save.
3. Claude.ai & Remote Web Connectors (Streamable HTTP / SSE Mode)
Host this server on any cloud service (Render, Railway, Fly.io, Vercel) or tunnel your local machine using ngrok.
Launching in HTTP Mode:
export POSTMCPAI_API_KEY="pmcp_sec_your_secret_api_key_here"
export POSTMCPAI_API_URL="https://your-backend-domain.com"
export PORT=3000
npm run start:sseConnecting to Claude.ai:
Provide your public MCP URL with your API key attached:
https://your-hosted-domain.com/mcp?apikey=pmcp_sec_your_secret_api_key_hereClaude.ai will discover tool capabilities via
/mcpand authenticate seamlessly.That URL is all you need: the key is bound to the workspace it was issued from, so tools act on that workspace without being told. To point the same key at a different workspace, append
&projectId=YOUR_WORKSPACE_ID(or send anx-project-idheader); individual tool calls can still override either withworkspaceId.
4. ChatGPT Custom GPTs (REST Actions)
When configuring a Custom GPT Action, specify your server URL (e.g.
https://your-hosted-domain.com).Import the OpenAPI schema directly from:
https://your-hosted-domain.com/openapi.jsonSet Authentication to API Key (Header Name:
Authorizationorx-api-key).
5. Programmatic Node.js Library Usage
You can also use @postmcpai/server as a library in your own Node.js backends:
import { createServer, createExpressApp, makeBackendRequest } from "@postmcpai/server";
// Create a standalone MCP Server instance
const mcpServer = createServer(() => process.env.POSTMCPAI_API_KEY);
// Or create an Express app with all remote routes attached
const app = createExpressApp();
app.listen(3000);๐งช Local Testing & Development
# Clone the repository
git clone https://github.com/postmcpai/postmcp-mcp-server.git
cd postmcp-mcp-server
# Install dependencies
npm install
# Start in Stdio Mode
npm start
# Start in HTTP Mode with hot reload
npm run dev๐ License
Distributed under the MIT License. Copyright ยฉ 2026 PostMCP AI.
Available Tools
7 toolscreate_postC
Schedule or publish immediately a post to one or more social media platforms or specific accounts.
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | The text body / commentary of the post. | |
| mediaUrl | No | Optional public URL of an image/video to attach. | |
| platforms | No | Target platforms for the post. | |
| scheduleDate | No | Schedule date in YYYY-MM-DD format (required if publishImmediately is false). | |
| scheduleTime | No | Schedule time in 24-hour HH:MM format (required if publishImmediately is false). | |
| targetAccounts | No | Optional specific target accounts containing platform, profileId, and userId. | |
| publishImmediately | No | If true, publishes immediately. Otherwise schedules for later. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavioral traits itself. It mentions scheduling and immediate publishing (a mutation) but does not discuss irreversibility, authentication requirements, failure handling, or what happens after publishing. This is a notable gap for a mutation tool.
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 one concise sentence, front-loaded with the core action 'Schedule or publish immediately.' Every word contributes meaning, and there is no redundant or filler content.
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?
Despite the schema covering parameter details, the tool has no annotations or output schema, leaving the description as the only source for behavioral context. It fails to mention expected return values, error conditions, or platform-specific constraints, which is inadequate for a 7-parameter mutation tool.
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?
All 7 parameters have schema descriptions (100% coverage), so the schema does the heavy lifting. The description adds no new semantic detail beyond the schema; it echoes the notion of platforms and accounts but does not clarify any parameter beyond what's already provided.
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 uses specific verbs 'Schedule or publish immediately' and identifies the resource 'a post to one or more social media platforms or specific accounts,' clearly distinguishing its dual publishing modes. However, it does not explicitly contrast with sibling tool publish_post_now, so it falls short of a 5.
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?
No explicit guidance is provided about when to use create_post over alternatives like publish_post_now or update_post. The description implies scheduling or immediate publishing but gives no exclusions, prerequisites, or alternative scenarios, leaving usage context unclear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_postA
Cancel and delete a scheduled or failed post from the database.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The Database ObjectId of the post to delete. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of disclosing behavioral traits. It clearly says 'delete from the database,' which implies permanence, but it does not explicitly state irreversibility, permissions required, or potential side effects. This is a moderate gap for a destructive tool.
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 a single, concise sentence that front-loads the action and target. There is no wasted wording or redundancy.
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 simple tool with one parameter and no output schema, the description fully explains what the tool does and what it operates on. It is complete for its complexity, given the sibling context and the clear 'database' reference.
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 fully documents the 'id' parameter as a Database ObjectId (100% coverage), so the description adds no extra meaning beyond the schema. The description does not elaborate on the parameter or its format, so it stays at the baseline.
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 uses a specific verb (delete) and resource (scheduled or failed post), clearly distinguishing it from sibling tools like update_post or publish_post_now. It states exactly what the tool does and the scope of posts it affects.
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?
The phrase 'scheduled or failed post' provides clear context on when to use this tool versus alternatives, effectively excluding published posts. However, it does not explicitly name alternative tools or state when not to use it, so it stops short of full guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_connected_accountsA
List all active, connected social media channels and their associated profile usernames.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden for behavioral disclosure. It only states a read-only action ('List') without mentioning any nuances like authentication requirements, empty list behavior, or whether 'active' affects the returned data.
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 a single concise sentence that front-loads the action and resource. Every word adds value with no redundancy.
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 simple tool with no parameters and no output schema, the description adequately conveys the purpose and the main output elements (channels and usernames). It could be more explicit about return format, but the level is sufficient for a list operation.
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 tool has no parameters, and the schema is an empty object. Per the baseline for zero-parameter tools, a score of 4 is appropriate since there are no parameter semantics to clarify.
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 clearly states the tool lists active, connected social media channels and their profile usernames. The verb 'List' and specific resource 'connected social media channels' make it distinct from sibling tools like get_user_info or list_posts.
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?
The description does not provide any guidance on when to use this tool vs alternatives. No exclusions, prerequisites, or explicit context are given, so the agent must infer usage from the resource name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_user_infoA
Retrieve details of the logged-in user including subscription plan, credit balance, and AI token count.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It clearly indicates a read operation and lists the data fields returned, but it does not disclose potential errors, authentication requirements beyond 'logged-in', or whether the data is real-time. For a simple read tool, this is adequate but not rich.
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 a single sentence of 13 words, front-loading the primary action and resource. Every word adds value and there is no redundancy or filler.
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 simple tool with no parameters and no output schema, the description provides the core purpose and enumerates the key returned fields. It does not explain the full response structure, but the listed inclusions offer sufficient context for an agent to invoke the tool correctly.
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?
There are zero parameters, and the schema coverage is 100% (empty properties). Per the rubric, a baseline of 4 applies when there are no parameters. The description adds no parameter-specific details because none exist.
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 uses the specific verb 'Retrieve' and clearly identifies the resource as 'details of the logged-in user' with explicit mention of subscription plan, credit balance, and AI token count. This distinguishes it from sibling tools like get_connected_accounts and list_posts.
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?
The description implies this tool is for accessing current user information, but it does not explicitly state when to use it over alternatives or provide exclusions. No sibling tool comparison or when/when-not guidance is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_postsA
Retrieve a list of scheduled, published, and failed social media posts.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. 'Retrieve' clearly indicates a read-only operation, and specifying the statuses adds context. However, it does not disclose pagination, ordering, or potential limitations, which would be expected for a list operation.
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 a single, front-loaded sentence with no filler. Every word contributes to understanding the tool's purpose and scope.
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 simple parameterless list tool, the description is largely sufficient. It identifies the resource and the included statuses, which is enough for an AI to decide when to use it. A minor gap is not mentioning the return format or any limits, but given the simplicity, this is acceptable.
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 tool has zero parameters, so there is nothing to document beyond what the schema already conveys (empty object). The description adds no parameter details, but the baseline for zero parameters is 4, and there is nothing missing.
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 uses a specific verb ('Retrieve') and resource ('social media posts'), and further specifies the scope ('scheduled, published, and failed'). This clearly distinguishes it from sibling tools like create_post, delete_post, and publish_post_now, which are mutations.
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?
The description implies this tool is for viewing posts, contrasting with the mutating sibling tools. However, it does not explicitly state when to use this tool over alternatives like get_user_info, though the context strongly suggests it for listing posts. No exclusions or prerequisites are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
publish_post_nowA
Broadcast an existing scheduled post immediately to its platforms.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The Database ObjectId of the post to publish. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the action and immediacy but does not mention potential side effects like whether the post loses its scheduled status, if the action is reversible, any permission requirements, or rate limits. This is a notable gap for a mutation tool.
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 a single, compact sentence that immediately conveys the action, target, and timing. No filler words; every word earns its place.
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?
The description is clear at a high level but omits details such as what happens to the original scheduled post, how 'platforms' are determined (e.g., connected accounts), and any prerequisites. Given the absence of annotations and an output schema, these gaps leave the description only modestly complete.
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 100% coverage for the single parameter 'id' with a clear description. The tool description adds the useful constraint that the post must be an 'existing scheduled post', which is meaningful context beyond the schema's generic 'post to publish' description.
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 uses the specific verb 'broadcast' and clearly identifies the resource as an 'existing scheduled post' with the immediate action of publishing to platforms. This distinguishes it from sibling tools like create_post, update_post, and delete_post, which handle different operations.
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?
The description clearly implies the use case: publishing a previously scheduled post right away. However, it does not explicitly mention alternatives or state when not to use it, though the sibling list provides no other tool for this action, making the context clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_postB
Update the fields (content, platforms, schedule date/time) of an existing post.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The Database ObjectId of the post to update. | |
| status | No | Reset status of the post. | |
| content | No | Updated text body of the post. | |
| platforms | No | Updated platforms for publication. | |
| scheduleDate | No | Updated schedule date in YYYY-MM-DD format. | |
| scheduleTime | No | Updated schedule time in HH:MM format. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It simply says 'update' without explaining partial vs. full field replacement, what happens to unspecified fields, whether the status can be reset, or any side effects. For a mutation tool, this lack of nuance is a significant gap.
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 a single sentence that is front-loaded with the verb and object. Every word earns its place; there is no filler or redundancy. It is appropriately concise given the tool's straightforward nature.
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?
The tool has 6 parameters, no output schema, and no annotations, yet the description is only one short sentence. It never mentions what happens on success or failure, whether updates are partial or full, or how the status field fits into the workflow. This is insufficient for such a complex mutation tool, especially without structured metadata to fill the gaps.
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?
Schema coverage is 100%, so the baseline is 3. The description adds a high-level grouping ('schedule date/time' for scheduleDate and scheduleTime) but does not provide additional meaning beyond the parameter descriptions already present. It doesn't compensate for or extend the schema, so a 3 is appropriate.
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 clearly states the action: 'Update the fields (content, platforms, schedule date/time) of an existing post.' The verb 'update' and resource 'post' are specific, and listing the fields distinguishes it from siblings like create_post and delete_post. It omits the status field, but the core purpose is unambiguous.
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?
No guidance is provided on when to use this tool versus alternatives. It doesn't mention create_post for new posts, publish_post_now for immediate publishing, or any prerequisites. The intended context is implied by the name but not explicitly stated, and no exclusions or alternative references are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool targets a distinct resource or action: user info, connected accounts, and post management (list, create, publish, update, delete). The actions are clearly separated, and even create_post vs publish_post_now are distinguished by whether the post is new or existing.
All tool names follow a consistent verb_noun pattern in snake_case (get_user_info, list_posts, create_post, publish_post_now, delete_post, update_post). The naming is uniform and predictable.
Seven tools is well-scoped for a social media post management server. Each tool covers a necessary operation without redundancy or bloat, making the set easy to navigate.
The tool set provides full CRUD for posts (create, list, update, delete), plus a specialized publish action, and includes user/account context. This covers the core workflow of managing social media posts from scheduling to publication.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Draft, schedule and publish social posts to nine platforms from any AI agent.
Schedule and publish social media posts to 9 platforms from your AI agent
Draft, schedule, and publish social posts for your workspace straight from your AI.
AI-native social media publishing to LinkedIn, Instagram, Threads, TikTok, and X.
Related MCP Servers
- AlicenseBqualityCmaintenanceConnects to multiple social media platforms (Twitter/X, Mastodon, LinkedIn), allowing users to create and publish content across platforms through natural language instructions.31422MIT
- AlicenseAqualityAmaintenanceEnables AI assistants to schedule and publish social media posts to platforms like Instagram, TikTok, YouTube, LinkedIn, Facebook, X, Threads, and Pinterest using natural language.332783MIT
- AlicenseAqualityDmaintenanceEnables AI assistants to manage social media accounts and CRM operations, including posting, analytics, inbox management, and customer management.22Apache 2.0
- FlicenseNot gradedqualityCmaintenanceEnables AI agents to create, schedule, and manage social media posts across 10 platforms via a unified API.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/postmcp/postmcp-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server