Skip to main content
Glama
postmcp

PostMCP MCP Server

Official
by postmcp

PostMCP AI 모델 컨텍스트 프로토콜(MCP) 서버

npm version License: MIT MCP Compatible

공식 PostMCP AI 모델 컨텍스트 프로토콜(MCP) 서버입니다. 소셜 미디어 게시 파이프라인을 Claude Desktop, Claude.ai, Cursor, ChatGPT Custom GPTs 같은 AI 어시스턴트, 데스크톱 애플리케이션, IDE 워크플로우, 웹 환경에 직접 연결하세요.

지원 플랫폼: LinkedIn, X (Twitter), Facebook, Instagram, Threads, Bluesky.


🚀 기능 및 역량

  • 🤖 내장 도구 15개: 워크스페이스, 연결된 계정 및 토큰 상태, 브랜드 키트, 게시 대기열, 사전 점검, 생성/예약/재예약/게시/재시도/삭제, 이미지 생성.

  • 이중 전송 모드: 네이티브 Stdio 모드(로컬 데스크톱 앱 및 IDE용)와 Streamable HTTP 모드(웹 서비스, 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 호환: ChatGPT Custom GPT 통합을 위한 내장 OpenAPI 3.0 스펙 생성기(/openapi.json)와 REST 엔드포인트(/api/tools/:name)를 포함합니다.

  • 🔒 OAuth 2.0 및 RFC 9728 지원: Claude.ai와의 원활한 동적 클라이언트 등록을 위해 PKCE 인증 서버 메타데이터를 광고합니다.


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

⚙️ 환경 설정

환경 변수

설명

기본값

POSTMCPAI_API_KEY

필수. PostMCP AI 대시보드에서 발급받은 비밀 API 키.

없음

POSTMCPAI_API_URL

PostMCP AI 백엔드 서비스의 API 루트 URL.

http://localhost:5023

POSTMCPAI_PROJECT_ID

선택 사항. API 키가 바인딩된 워크스페이스를 재정의합니다. 호출의 workspaceId가 다시 이를 재정의합니다.

API 키가 발급된 워크스페이스

PORT

이 값을 설정하면 서버가 원격 Streamable HTTP 모드로 실행됩니다.

없음 (기본값: Stdio 모드)


🛠️ MCP 도구 참조

아래의 모든 도구는 특정 워크스페이스에서 작업하기 위해 선택적 workspaceId(list_workspaces에서 가져옴)도 허용합니다.

읽기

도구 이름

설명

필수

선택 사항

get_user_info

인증된 사용자: 플랜, 크레딧 잔액, AI 토큰, 활성 워크스페이스 및 역할.

workspaceId

list_workspaces

사용자가 속한 모든 워크스페이스(아이디, 역할, 연결된 플랫폼 포함).

get_connected_accounts

타겟팅에 필요한 profileId가 포함된 연결된 소셜 프로필.

workspaceId

get_account_health

토큰이 만료되었거나 곧 만료되어 재연결이 필요한 연결.

workspaceId

list_brandings

브랜드 키트: 톤, 타겟 오디언스, 키워드, 스타일 이미지.

workspaceId

list_posts

게시 대기열(최신순), 프로필별 전달 상태, 페이지네이션 및 개수 포함.

status, page, limit, all

get_post

게시물 하나 전체: 수신한 프로필, 라이브 URL, 프로필별 오류.

id

쓰기

도구 이름

설명

필수

선택 사항

preflight_post

드라이 런: 문자 수 제한, 연결되지 않은 프로필, 누락된 미디어, 크레딧 비용. 아무것도 게시하지 않습니다.

content

targetAccounts, platforms, mediaUrl

create_post

지정된 프로필에 게시물을 초안, 예약 또는 즉시 게시합니다. 각 프로필은 고유한 아이디를 가진 별도의 게시물이 됩니다.

content

targetAccounts, variants, platforms, publishImmediately, scheduleDate, scheduleTime, timezone, mediaUrl

publish_post_now

기존 게시물을 즉시 게시합니다. 실패한 게시물을 재시도하며, 이미 전달된 프로필은 건너뜁니다.

id

update_post

콘텐츠, 타겟 프로필, 일정, 미디어 또는 상태를 업데이트합니다.

id

content, targetAccounts, platforms, scheduleDate, scheduleTime, timezone, mediaUrl, status

reschedule_post

게시물을 새 시간대로 이동하며, 콘텐츠와 타겟은 유지합니다. 실패한 게시물과 초안 게시물을 다시 활성화합니다.

id, scheduleDate, scheduleTime

timezone

reset_stuck_post

게시 중 멈춘 게시물을 해제하여 재시도할 수 있게 합니다. 이미 전달된 프로필의 상태는 유지됩니다.

id

force

delete_post

예약되었거나 실패한 게시물을 취소하고 삭제합니다.

id

generate_image

게시물 이미지를 생성하고 mediaUrl용 호스팅 URL을 반환합니다. AI 토큰을 사용합니다.

prompt

brandingId, styleImageUrl

일괄 처리

도구 이름

설명

필수

선택 사항

multicall

위 도구 중 최대 20개를 하나의 요청으로 순서대로 실행합니다. 도구 이름은 실행 전에 검증되므로 오타로 인해 배치의 절반이 기록되는 일은 없습니다. 중첩할 수 없습니다.

calls

stopOnError, workspaceId

{
  "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.json

  • Windows: %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

  1. Cursor 설정 -> 기능 -> MCP를 엽니다.

  2. + 새 MCP 서버 추가를 클릭합니다.

  3. 세부 정보를 입력합니다:

    • 이름: postmcpai

    • 유형: command

    • 명령어: npx -y @postmcpai/server

  4. 환경 변수에 다음을 추가합니다:

    • POSTMCPAI_API_KEY = pmcp_sec_your_secret_api_key_here

    • POSTMCPAI_API_URL = http://localhost:5023

  5. 저장을 클릭합니다.


3. Claude.ai 및 원격 웹 커넥터 (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에 연결:

  1. API 키가 포함된 공개 MCP URL을 제공하세요: https://your-hosted-domain.com/mcp?apikey=pmcp_sec_your_secret_api_key_here

  2. Claude.ai가 /mcp를 통해 도구 기능을 발견하고 원활하게 인증합니다.

  3. 해당 URL만 있으면 됩니다: 키가 발급된 워크스페이스에 바인딩되어 있으므로 도구는 별도 지정 없이 해당 워크스페이스에서 작동합니다. 동일한 키를 다른 워크스페이스에 지정하려면 &projectId=YOUR_WORKSPACE_ID를 추가하거나(또는 x-project-id 헤더 전송) 개별 도구 호출에서 workspaceId로 재정의할 수 있습니다.


4. ChatGPT Custom GPTs (REST Actions)

  1. Custom GPT Action을 구성할 때 서버 URL을 지정하세요(예: https://your-hosted-domain.com).

  2. OpenAPI 스키마를 다음에서 직접 가져옵니다: https://your-hosted-domain.com/openapi.json

  3. 인증을 API 키(헤더 이름: 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 라이선스에 따라 배포됩니다. Copyright © 2026 PostMCP AI.

Available Tools

7 tools
create_postC

Schedule or publish immediately a post to one or more social media platforms or specific accounts.

ParametersJSON Schema
NameRequiredDescriptionDefault
contentYesThe text body / commentary of the post.
mediaUrlNoOptional public URL of an image/video to attach.
platformsNoTarget platforms for the post.
scheduleDateNoSchedule date in YYYY-MM-DD format (required if publishImmediately is false).
scheduleTimeNoSchedule time in 24-hour HH:MM format (required if publishImmediately is false).
targetAccountsNoOptional specific target accounts containing platform, profileId, and userId.
publishImmediatelyNoIf true, publishes immediately. Otherwise schedules for later.

TDQS

C2.9/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe Database ObjectId of the post to delete.

TDQS

A4.1/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.6/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.2/5.0
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe Database ObjectId of the post to publish.

TDQS

A3.9/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe Database ObjectId of the post to update.
statusNoReset status of the post.
contentNoUpdated text body of the post.
platformsNoUpdated platforms for publication.
scheduleDateNoUpdated schedule date in YYYY-MM-DD format.
scheduleTimeNoUpdated schedule time in HH:MM format.

TDQS

B3.2/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

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 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.

Usage Guidelines2/5

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

A3.9/5.0
Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness5/5

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

ActivityMaintained
ResponsivenessSyncing

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

Related MCP Servers

Latest Blog Posts

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