PostMCP MCP Server
OfficialPostMCP AI Model Context Protocol (MCP) 服务器
官方 PostMCP AI 模型上下文协议(MCP)服务器。将您的社交媒体发布管道直接连接到 AI 助手、桌面应用程序、IDE 工作流以及 Claude Desktop、Claude.ai、Cursor 和 ChatGPT Custom GPTs 等 Web 环境中。
支持的平台包括 LinkedIn、X (Twitter)、Facebook、Instagram、Threads 和 Bluesky。
🚀 功能与能力
🤖 15 个内置工具:工作区、已连接账户及其令牌健康状况、品牌套件、帖子队列、预检检查、创建/计划/重新计划/发布/重试/删除以及图像生成。
⚡ 双传输模式:原生 Stdio 模式(适用于本地桌面应用和 IDE)和 Streamable HTTP 模式(适用于 Web 服务、Claude.ai 和远程连接器)。
🔑 灵活的身份验证:自动从环境变量(
POSTMCPAI_API_KEY)、URL 查询参数(?apikey=YOUR_KEY)或 HTTP 授权标头(x-api-key、Bearer token)中检测 API 密钥。🗂️ 多工作区感知:API 密钥自带其所属工作区,因此仅凭一个密钥即可。要对其他工作区进行操作,每个工具都接受可选的
workspaceId,也可按连接(?projectId=...、x-project-id)或按进程(POSTMCPAI_PROJECT_ID)设置。🤖 兼容 ChatGPT Actions:包含内置的 OpenAPI 3.0 规范生成器(
/openapi.json)和 REST 端点(/api/tools/:name),用于 ChatGPT Custom GPT 集成。🔒 OAuth 2.0 与 RFC 9728 支持:公布 PKCE 授权服务器元数据,以便与 Claude.ai 实现无缝的动态客户端注册。
Related MCP server: @posteverywhere/mcp
📁 仓库架构
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⚙️ 环境配置
环境变量 | 描述 | 默认值 |
| 必需。 您从 PostMCP AI 仪表板获取的秘密 API 密钥。 |
|
| 您的 PostMCP AI 后端服务的 API 根 URL。 |
|
| 可选。覆盖 API 密钥所绑定的工作区。反过来会被调用的 | API 密钥签发时所在的工作区 |
| 设置此项将以远程 Streamable HTTP 模式启动服务器。 |
|
🛠️ MCP 工具参考
下面的每个工具还接受可选的 workspaceId(来自 list_workspaces),以对特定工作区进行操作。
读取
工具名称 | 描述 | 必需 | 可选 |
| 已认证用户:套餐、积分余额、AI 令牌、活动工作区和角色。 | — |
|
| 用户所属的每个工作区,包含 ID、角色和已连接的平台。 | — | — |
| 已连接的社交媒体资料,包含定位它们所需的 | — |
|
| 令牌已过期或即将过期、需要重新连接的连接。 | — |
|
| 品牌套件:语气、受众、关键词、风格图片。 | — |
|
| 帖子队列,最新在前,包含每个资料的分发状态、分页和计数。 | — |
|
| 完整查看单个帖子:哪些资料收到了它、实时 URL 以及每个资料的错误。 |
| — |
写入
工具名称 | 描述 | 必需 | 可选 |
| 预演:字符限制、未连接的资料、缺失的媒体、积分成本。不发布任何内容。 |
|
|
| 将帖子草拟、计划或立即发布到指定的资料。每个资料都会成为具有自己 ID 的独立帖子。 |
|
|
| 立即发布现有帖子;也可重试失败的帖子,跳过已分发的资料。 |
| — |
| 更新内容、目标资料、计划、媒体或状态。 |
|
|
| 将帖子移至新的时间段,保留文案和目标。重新启用失败的帖子和草稿帖子。 |
|
|
| 释放卡在发布过程中的帖子,以便可以重试。已分发的资料保持其状态。 |
|
|
| 取消并删除已计划或失败的帖子。 |
| — |
| 生成帖子图片并返回其托管 URL 作为 |
|
|
批处理
工具名称 | 描述 | 必需 | 可选 |
| 在一次请求中按顺序运行上述最多 20 个工具。工具名称在任何内容执行之前都会经过验证,因此拼写错误不会导致批处理只写入一半。不能嵌套。 |
|
|
{
"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
}回复为每次调用携带一个条目 — { id, tool, ok, result } 或 { id, tool, ok: false, error } — 以及计数,并且当失败导致批处理停止时,还包括被跳过的调用。
客户端注意事项
定位资料,而非平台。
targetAccounts仅发送到指定的资料;platforms则分发到每个平台上所有已连接的资料。每个资料一个帖子。
create_post为每个目标资料存储一个独立的帖子,因此每个帖子都可以单独编辑、重试或取消。通过targetAccounts[].content或variants映射提供每个资料的文案。当挂钟时间很重要时,始终传递
timezone。后端默认为 UTC,因此未指定时区而计划在 9:00 IST 发布的帖子会在 14:30 IST 发出。积分按分发到的每个资料收费(X/Twitter 为 5 积分,其他为 1 积分),当文案包含链接时还会一次性加收 50 积分。
preflight_post会在您提交之前报告这一点。
💻 客户端集成指南
1. Claude Desktop 应用(Stdio 模式)
将以下配置添加到您的 Claude Desktop 配置文件中:
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
打开 Cursor Settings -> Features -> MCP。
点击 + Add New MCP Server。
填写详细信息:
名称:
postmcpai类型:
command命令:
npx -y @postmcpai/server
在 Environment Variables 下,添加:
POSTMCPAI_API_KEY=pmcp_sec_your_secret_api_key_herePOSTMCPAI_API_URL=http://localhost:5023
点击 Save。
3. Claude.ai 与远程 Web 连接器(Streamable HTTP / SSE 模式)
将此服务器托管在任何云服务(Render、Railway、Fly.io、Vercel)上,或使用 ngrok 对本地机器进行隧道转发。
以 HTTP 模式启动:
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:sse连接到 Claude.ai:
提供附加了 API 密钥的公共 MCP URL:
https://your-hosted-domain.com/mcp?apikey=pmcp_sec_your_secret_api_key_hereClaude.ai 将通过
/mcp发现工具能力并无缝进行身份验证。您只需要那个 URL:密钥绑定到其签发时所在的工作区,因此工具无需告知即可对该工作区进行操作。要将同一个密钥指向不同的工作区,请附加
&projectId=YOUR_WORKSPACE_ID(或发送x-project-id标头);单个工具调用仍然可以用workspaceId覆盖两者。
4. ChatGPT Custom GPTs(REST 操作)
配置 Custom GPT Action 时,请指定您的服务器 URL(例如
https://your-hosted-domain.com)。直接从以下位置导入 OpenAPI 架构:
https://your-hosted-domain.com/openapi.json将身份验证设置为 API Key(标头名称:
Authorization或x-api-key)。
5. 以编程方式使用 Node.js 库
您还可以在自己的 Node.js 后端中将 @postmcpai/server 用作库:
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);🧪 本地测试与开发
# 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📄 许可证
根据 MIT 许可证 分发。版权所有 © 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