Skip to main content
Glama
NerdSnipe-Inc

postforme-mcp-server

PostforMe MCP Server

Give any AI agent — Claude, Cursor, Windsurf, or any MCP-compatible client — full control over your social media through natural language.

npm version npm downloads License: MIT Node.js: >=18 MCP Protocol PostforMe API MCP Badge


What is this?

This is a Model Context Protocol (MCP) server that connects your AI tools directly to the Post for Me API — a social media scheduling and publishing platform supporting 10 platforms out of the box.

Once installed, your AI can manage social media end-to-end:

"Schedule a post to go out on Instagram, Facebook, and X tomorrow at 9am" "Show me all posts that failed to publish in the last week and tell me why" "Create a YouTube video post with a custom title, tags, and set it to unlisted" "Get the engagement metrics for every post we made this month on TikTok" "Set up a webhook so I'm notified whenever a post goes live"

21 tools covering the full Post for Me API:

Category

Tools

Media

Upload signed URLs for images and videos

Social Posts

Create, schedule, update, delete posts across all platforms

Post Results

Fetch publish outcomes, errors, and platform URLs

Social Accounts

Connect, manage, and disconnect platform accounts

Account Feeds

Retrieve every post from a connected account (including non-API posts) with metrics

Webhooks

Subscribe to post and account events

Post Previews

Preview exactly what a post will look like before publishing

Supported platforms: Bluesky · Facebook · Instagram · LinkedIn · Pinterest · Threads · TikTok · TikTok Business · X (Twitter) · YouTube


Related MCP server: Outpost

Prerequisites

  • Node.js 18 or laterdownload here

  • A Post for Me accountsign up free

  • A Post for Me API key — takes 30 seconds to get (see below)

How to get your API key

  1. Log in to your Post for Me dashboard

  2. Navigate to Settings → API

  3. Copy your API key

⚠️ Keep your API key secret. Set it in your MCP client config — never commit it to source control.


Installation

No build step needed. Pass your API key in your AI client config and the server runs on demand via npx.

Quick install via package manager

Use npx, pnpm dlx, or bunx to run the server without installing anything globally:

# npm / npx  (no install required)
npx @nerdsnipe-inc/postforme-mcp-server

# pnpm
pnpm dlx @nerdsnipe-inc/postforme-mcp-server

# bun
bunx @nerdsnipe-inc/postforme-mcp-server

Or install globally:

npm install -g @nerdsnipe-inc/postforme-mcp-server
# then run:
postforme-mcp-server

Connecting to AI Clients

Claude Desktop

Open (or create) your Claude Desktop config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "postforme": {
      "command": "npx",
      "args": ["-y", "@nerdsnipe-inc/postforme-mcp-server"],
      "env": {
        "POSTFORME_API_KEY": "your_api_key_here"
      }
    }
  }
}

Restart Claude Desktop. You should see a hammer icon (🔨) in the chat input — that means MCP tools are active.


Claude Code (CLI)

claude mcp add postforme npx -- -y @nerdsnipe-inc/postforme-mcp-server \
  -e POSTFORME_API_KEY=your_api_key_here

Or add it manually to ~/.claude/mcp_servers.json (or your project's .mcp.json):

{
  "mcpServers": {
    "postforme": {
      "command": "npx",
      "args": ["-y", "@nerdsnipe-inc/postforme-mcp-server"],
      "env": {
        "POSTFORME_API_KEY": "your_api_key_here"
      }
    }
  }
}

Project-scoped tip: Add a .mcp.json in your project root so everyone on the team picks it up automatically. Add .mcp.json to .gitignore so your API key isn't committed.


Cursor

  1. Open Cursor Settings → MCP (or press Cmd+Shift+P → "Open MCP Settings")

  2. Click Add Server and fill in:

{
  "name": "postforme",
  "command": "npx",
  "args": ["-y", "@nerdsnipe-inc/postforme-mcp-server"],
  "env": {
    "POSTFORME_API_KEY": "your_api_key_here"
  }
}
  1. Save and restart Cursor.


Windsurf

Open ~/.codeium/windsurf/mcp_config.json and add:

{
  "mcpServers": {
    "postforme": {
      "command": "npx",
      "args": ["-y", "@nerdsnipe-inc/postforme-mcp-server"],
      "env": {
        "POSTFORME_API_KEY": "your_api_key_here"
      }
    }
  }
}

Any other MCP-compatible client

This server uses stdio transport — the standard for local MCP servers. Your client needs:

  • Command: npx

  • Args: ["-y", "@nerdsnipe-inc/postforme-mcp-server"]

  • Env: POSTFORME_API_KEY

Refer to your client's MCP documentation for exact config syntax.


All 21 Tools — Full Reference

Media

Use media tools when you need to attach images or videos that aren't already on a public URL. The typical flow is: create upload URL → PUT file to signed URL → use media_url in your post.

Tool

Description

pfm_create_media_upload_url

Request a signed upload URL for an image or video. Returns upload_url (PUT your file there) and media_url (use when creating a post). Media is deleted automatically after 24h if unused, or when the post is published.


Social Posts

Posts support three levels of content override — the most specific wins:

  1. Default — top-level caption and media apply to all platforms

  2. Platformplatform_configurations.instagram, .x, .youtube, etc. override defaults per platform

  3. Accountaccount_configurations[].configuration overrides per specific account

Tool

Description

pfm_get_posts

Get a paginated list of social posts. Filter by platform, status (draft, scheduled, processing, processed), external ID, or social account ID. All filters use OR logic.

pfm_create_post

Create and schedule (or publish immediately) a post across one or more accounts. Omit scheduled_at to post instantly. Supports full per-platform and per-account configuration.

pfm_get_post

Get a single post by ID.

pfm_update_post

Replace an existing post's full definition.

pfm_delete_post

Delete a post.


Social Post Results

Post results record the outcome of publishing — whether each platform publish succeeded or failed, plus the live URL.

Tool

Description

pfm_get_post_results

Get a paginated list of post results. Filter by post ID, platform, or social account ID.

pfm_get_post_result

Get a single post result by ID. Includes success, error details, platform_data.url, and media.


Social Accounts

Social accounts are the platform-specific identities used for publishing. Each has a unique id (e.g. spc_xxx) that you reference when creating posts.

Tool

Description

pfm_get_social_accounts

Get connected social accounts. Filter by platform, username, external ID, account ID, or status (connected / disconnected).

pfm_create_social_account

Create or upsert a social account using your own OAuth tokens (bring-your-own auth flow). Matches on platform + user_id.

pfm_get_social_account

Get a single social account by ID.

pfm_update_social_account

Update a social account's username or external ID.

pfm_create_social_account_auth_url

Generate an OAuth URL to connect a user's social platform account. Redirect the user to this URL. Include permissions: ['feeds'] if you want to access analytics later.

pfm_disconnect_social_account

Disconnect an account — removes all auth tokens and marks it as disconnected. The account record is kept and can be reconnected.


Social Account Feeds

The account feed returns every post made under a connected account — including posts not made through Post for Me. Requires the account to have been connected with the feeds permission.

Tool

Description

pfm_get_account_feed

Get all posts for a connected account, with optional expand=['metrics'] to include engagement data (views, likes, follows, etc.). Supports cursor-based pagination.

Supported platforms and notes:

  • Instagram — metrics may take up to 48 hours to appear

  • Facebook — feeds with expand=metrics are capped at 10 results by default

  • TikTok — consumer API exposes limited analytics; use TikTok Business for full metrics

  • TikTok Business — full analytics available

  • YouTube, Threads, X (Twitter), Pinterest — fully supported

  • Bluesky — views/impressions not available via their API

  • LinkedIn — metrics only available for company pages


Webhooks

Webhooks let you subscribe to Post for Me events. When an event fires, Post for Me sends a POST to your URL with:

{ "event_type": "social.post.result.created", "data": { ... } }

Verify requests using the Post-For-Me-Webhook-Secret header returned when you create a webhook. Failed deliveries are retried with exponential backoff ~8 times over ~1 day.

Tool

Description

pfm_get_webhooks

Get a paginated list of webhooks. Filter by URL, event type, or ID.

pfm_create_webhook

Create a webhook. Available events: social.post.created, social.post.updated, social.post.deleted, social.post.result.created, social.account.created, social.account.updated. Returns a secret for request verification — store it securely.

pfm_get_webhook

Get a single webhook by ID.

pfm_update_webhook

Update a webhook's URL and/or subscribed event types.

pfm_delete_webhook

Delete a webhook.


Social Post Previews

Generate a visual preview of exactly what a post will look like for each account before publishing. No real accounts needed — you can use placeholder IDs for accounts that aren't connected yet.

Tool

Description

pfm_create_post_previews

Preview a post per account. Returns resolved caption, media, platform, and configuration for each specified account.


Example Prompts

Here are things you can say to your AI once connected:

"Schedule a post to go out tomorrow at 9am on Instagram and Facebook with the caption 'Big announcement coming!' "

"Show me all posts that failed to publish in the last 7 days — include the error reason"

"Get the engagement metrics for every TikTok post we made this month"

"Create a YouTube video post, set the title to 'Q2 Product Demo', make it unlisted, and tag it as made for professionals"

"Post immediately to our X and Threads accounts: 'We just shipped something big. Stay tuned.' "

"What social accounts do we have connected? Show me the platform, username, and connection status"

"Disconnect the Instagram account with ID spc_abc and show me the confirmation"

"Set up a webhook at https://my-site.com/webhooks/postforme that fires whenever a post result comes in"

"Generate a preview of this caption across our Facebook and Instagram accounts before I schedule it"

"Upload this image URL as a media asset and give me the media_url to use in a post"

"Check the status of post sp_xyz — did it publish successfully on all platforms?"

"List all scheduled posts going out this week, sorted by platform"

"Get the full activity feed for our LinkedIn account and show me the top 5 posts by engagement"

"Create a Pinterest post with board ID brd_123 and a link back to our product page"

"Schedule a TikTok post as a draft so I can finish it in the app later"

Environment Variables Reference

Variable

Required

Description

POSTFORME_API_KEY

✅ Yes

Your Post for Me API key — get it from app.postforme.dev

That's it — just one variable. Social account IDs, post IDs, and webhook IDs are passed as parameters when you call the relevant tools.


Platform-Specific Configuration Reference

When creating posts, you can pass platform_configurations to override caption, media, or platform-specific settings for each platform:

Instagram

placement (reels / stories / timeline), collaborators, share_to_feed, location, trial_reel_type (manual / performance), audio_name

Facebook

placement (reels / stories / timeline), location, collaborators, set_caption_for_each_image

X (Twitter)

poll (duration, options, reply_settings), community_id, quote_tweet_id, reply_settings

YouTube

title, description, tags, category_id, privacy_status (public / private / unlisted), embeddable, license, made_for_kids, contains_synthetic_media, publish_at, recording_date, localizations

TikTok / TikTok Business

privacy_status, allow_comment, allow_duet, allow_stitch, disclose_your_brand, disclose_branded_content, is_ai_generated, is_draft, auto_add_music

Pinterest

title, board_ids, link

Threads

placement (reels / timeline)

LinkedIn, Bluesky

Caption and media overrides only.


Running from source (contributors)

git clone https://github.com/Nerdsnipe-Inc/postforme-mcp-server.git
cd postforme-mcp-server
npm install

Point your MCP client at the source via tsx:

{
  "command": "npx",
  "args": ["tsx", "/absolute/path/to/postforme-mcp-server/src/index.ts"]
}

Or build for production:

npm run build
node dist/index.js

Development

# Install dependencies
npm install

# Run in development mode (no build step needed)
npm run dev

# Type-check without building
npm run typecheck

# Build for production
npm run build

# Watch mode (rebuilds on file changes)
npm run build:watch

# Run tests
npm test

# Run tests with coverage
npm run test:coverage

Project Structure

postforme-mcp-server/
├── src/
│   ├── index.ts                    # MCP server entry point — registers all tools
│   ├── client.ts                   # HTTP client (auth, URL builder, error handling)
│   └── tools/
│       ├── media.ts                #  1 media upload tool
│       ├── social_posts.ts         #  5 post CRUD tools
│       ├── social_post_results.ts  #  2 post result tools
│       ├── social_accounts.ts      #  6 social account tools
│       ├── social_account_feeds.ts #  1 account feed tool
│       ├── webhooks.ts             #  5 webhook tools
│       └── social_post_previews.ts #  1 post preview tool
├── tests/
│   ├── helpers.ts                  # Shared mocks and test utilities
│   ├── client.test.ts              # Client and URL builder tests
│   ├── server.test.ts              # Tool registry invariant tests
│   └── tools.test.ts               # Handler tests for all 21 tools
├── dist/                           # Compiled output (generated by npm run build)
├── .env.example                    # Environment variable template
├── package.json
├── tsconfig.json
└── README.md

Adding a new tool

  1. Find the relevant module in src/tools/ (or create a new one)

  2. Add an entry following the existing pattern:

{
  name: "pfm_your_tool_name",
  description: "What this tool does and when to use it",
  inputSchema: z.object({
    id: z.string().describe("The resource ID"),
  }),
  handler: async (args: Record<string, unknown>, config: PostForMeConfig) => {
    const { id } = args as { id: string };
    try {
      const result = await pfmRequest("GET", `/v1/your-endpoint/${id}`, {
        apiKey: config.apiKey,
      });
      return JSON.stringify(result, null, 2);
    } catch (e) {
      return formatError(e);
    }
  },
}
  1. Import and spread it into ALL_TOOLS in src/index.ts

  2. Add handler tests in tests/tools.test.ts

  3. Run npm test to verify everything passes

  4. Submit a PR!


Troubleshooting

The server isn't showing up in my AI client

  • Make sure Node.js 18+ is installed: node --version

  • Try running npx @nerdsnipe-inc/postforme-mcp-server directly in a terminal to see any errors

  • Restart your AI client after changing MCP config

Getting "POSTFORME_API_KEY is not set" errors

  • Verify the env block in your MCP client config includes POSTFORME_API_KEY

  • Or create a .env file in your working directory with POSTFORME_API_KEY=your_key

Getting 401 Unauthorized

  • Double-check your API key in the Post for Me dashboard

  • Make sure there are no extra spaces or line breaks in the key

Post published on some platforms but not others

  • Use pfm_get_post_results filtered by the post ID to see per-platform outcomes

  • Each result includes an error field explaining what went wrong on that platform

Account feed returns no data / 404

  • The account must have been connected with the feeds permission

  • Use pfm_create_social_account_auth_url with permissions: ['posts', 'feeds'] to reconnect it

Media upload fails

  • The signed upload_url from pfm_create_media_upload_url is short-lived — use it immediately

  • PUT the file directly to the signed URL, then use the returned media_url in your post


Contributing

Pull requests are welcome! Please:

  1. Fork the repo

  2. Create a feature branch (git checkout -b feature/my-new-tool)

  3. Add your changes and write tests (npm test must pass)

  4. Commit and push, then open a PR

Keep tool names prefixed with pfm_ and handler args typed as Record<string, unknown> with internal casts.


License

MIT © Small Business AI Specialist


Available Tools

21 tools
pfm_create_media_upload_urlA

Request a signed upload URL for a media file (image/video). Returns upload_url (PUT your file there) and media_url (use in post). Media assets are temporary: deleted when the post is published, after 24h if unused, or when the post is deleted.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description shoulders the burden of behavioral disclosure. It explicitly states that media assets are temporary and details the exact deletion triggers: after post publication, after 24 hours if unused, or when the post is deleted. This goes beyond a basic functional description, though it does not cover authorization requirements or rate limits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the main purpose and followed by key workflow details and lifecycle behavior. Every sentence contributes necessary information with no wordiness or redundancy, making it highly concise and well-structured.

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?

Given the tool's simplicity (zero parameters, no output schema), the description is quite complete: it covers purpose, required usage steps (PUT and then use in post), returned fields, and the critical temporary nature of media assets. It does not elaborate on file size/type constraints, but for a tool this straightforward, the description is sufficiently comprehensive.

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 the baseline is 4 per the rubric. The description adds no parameter-specific details because there are none, and the schema is already complete with an empty object. No gap exists.

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's function: 'Request a signed upload URL for a media file (image/video).' It specifies the exact action (request) and resource (signed upload URL for media), and distinguishes it from sibling tools like post creation or account management by focusing on media upload specifically.

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 provides clear procedural context: it tells the agent to PUT the file to the returned `upload_url` and then use `media_url` in a post. This implies when to use the tool (before publishing media content) but does not explicitly mention exclusions or alternative tools, though none are relevant. This is clear context without explicit 'when not to use' guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_create_postA

Create and schedule (or publish immediately) a social media post across one or more accounts. Omit scheduled_at to post instantly. Use platform_configurations for per-platform overrides and account_configurations for per-account overrides. The most specific override wins.

ParametersJSON Schema
NameRequiredDescriptionDefault
mediaNoMedia items to attach. For 'stories' placement, multiple items create individual posts.
captionYesCaption/body text for the post
isDraftNoIf true, save as draft — post will not be processed
external_idNoYour own unique identifier for this post
scheduled_atNoISO 8601 datetime to schedule the post; omit to post immediately
social_accountsYesArray of social account IDs to post to
account_configurationsNoAccount-specific content overrides
platform_configurationsNoPlatform-specific content overrides (pinterest, instagram, tiktok, tiktok_business, x, youtube, facebook, linkedin, bluesky, threads)

TDQS

A4.2/5.0
Behavior3/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It does add useful context: the override precedence ('most specific override wins') and the scheduling vs. immediate publishing behavior. However, it does not disclose other behavioral traits such as draft handling, media processing, idempotency, or potential side effects. For a mutation tool of this complexity, this is a moderate but incomplete disclosure.

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 extremely concise—three sentences—and front-loaded. The first sentence states the core function, and each subsequent sentence adds a distinct piece of guidance (scheduling, overrides, precedence). No filler or redundancy; every word contributes to the tool's usability.

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?

Given the high complexity (8 parameters, nested objects) and the absence of an output schema, the description is relatively brief. However, the schema itself is extremely rich with detailed parameter descriptions. The tool description covers the essential decision-making points: schedule vs. immediate, override hierarchy, and multi-account support. It does not explain return values, but since no output schema is defined, that is acceptable. Overall, it is sufficient for an agent to select and invoke the tool correctly in most scenarios.

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?

Although the schema already provides 100% parameter coverage, the description adds meaningful semantics that are not in the schema: 'Omit scheduled_at to post instantly' clarifies the behavior of the scheduled_at parameter, and the description explains the roles of `platform_configurations` and `account_configurations` as override layers. The 'most specific override wins' rule adds precedence semantics that are absent from the schema. This justifies a score above the baseline of 3.

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's function: create and schedule (or immediately publish) a social media post across one or more accounts. It distinguishes this from sibling tools like pfm_create_media_upload_url or pfm_create_social_account by focusing on the post creation and scheduling aspect. The verb 'create' and resource 'social media post' are specific and unambiguous.

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 provides clear situational guidance: omit `scheduled_at` to post instantly versus scheduling, and use `platform_configurations` for per-platform overrides versus `account_configurations` for per-account overrides. However, it does not explicitly state when to prefer this tool over alternatives like pfm_create_post_previews, nor does it mention any exclusions or prerequisites. The guidance is clear for the parameters it covers but not exhaustive.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_create_post_previewsA

Generate a preview of what a post will look like for each specified account. You can preview non-connected accounts by specifying a placeholder ID. Returns per-account preview objects with resolved caption, media, platform, and configuration.

ParametersJSON Schema
NameRequiredDescriptionDefault
mediaNoMedia items to include in the preview
captionYesCaption text for the post
account_configurationsNoAccount-specific content overrides
platform_configurationsNoPlatform-specific content overrides (same schema as CreateSocialPostDto platform_configurations)
preview_social_accountsYesSocial accounts to preview — can include non-connected accounts with placeholder IDs

TDQS

A4.2/5.0
Behavior3/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 reveals the return format (per-account preview objects) and the placeholder behavior, but it does not explicitly state whether the operation is read-only, requires authentication, or has side effects. Since the tool name begins with 'create', an agent might assume mutation; the description clarifies it is a preview but stops short of confirming non-destructiveness.

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 exactly two sentences: the first states the core action, the second adds the placeholder capability and return format. Every sentence earns its place, with no redundancy or filler. Key information is front-loaded, making it immediately clear what the tool does.

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?

The tool has 5 parameters, nested objects, and no output schema, so the description must provide a mental model. It does so by outlining inputs (caption, media, per-account targets), the placeholder capability, and the return structure. It could elaborate on how account_configurations and platform_configurations override defaults, but the schema descriptions already cover those. Given the moderate complexity, the description is reasonably complete without being exhaustive.

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?

Schema description coverage is 100%, so a baseline of 3 applies. However, the description adds meaningful semantics beyond the schema by stating that non-connected accounts can be previewed with placeholder IDs, which directly applies to the preview_social_accounts.id parameter. It also mentions that the output includes resolved caption, media, platform, and configuration, clarifying how parameters like account_configurations and platform_configurations influence results. This additional context justifies a score above 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 'Generate a preview of what a post will look like for each specified account' clearly states the verb (generate), resource (post preview), and scope (per account). It distinguishes itself from siblings like pfm_create_post by explicitly focusing on preview, not publishing. The mention of previewing non-connected accounts via placeholder IDs further sharpens its unique purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context for when to use this tool: when you need per-account previews of a post, including for non-connected accounts via placeholders. It does not explicitly name alternatives or exclusions, but the sibling list and the term 'preview' imply it is for pre-publication viewing rather than actual creation. The statement 'You can preview non-connected accounts by specifying a placeholder ID' provides a specific usage scenario.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_create_social_accountA

Create a social account directly (upsert by platform + user_id). If an account with the same platform and user_id already exists, it is updated. Use this when you have OAuth tokens from your own auth flow.

ParametersJSON Schema
NameRequiredDescriptionDefault
user_idYesThe platform's user ID for this account
metadataNoCustom metadata for the account
platformYesSocial media platform
usernameNoPlatform username
external_idNoYour unique identifier for this account
access_tokenYesOAuth access token
refresh_tokenNoOAuth refresh token
access_token_expires_atYesISO 8601 datetime when access token expires
refresh_token_expires_atNoISO 8601 datetime when refresh token expires

TDQS

A4.4/5.0
Behavior4/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 discloses the critical upsert behavior (updates existing account if same platform+user_id), which goes beyond a simple 'create'. It also implies a direct create without an intermediate OAuth step. However, it does not detail what happens to existing fields (merge vs replace) or mention any side effects, so it's not fully transparent but provides meaningful insight.

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 exceptionally concise: two sentences that immediately state the primary action and the key behavioral nuance. It front-loads the most important information ('Create a social account directly') and includes the upsert caveat without unnecessary filler. No wasted words.

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?

Given the tool's complexity (9 parameters, no output schema, no annotations), the description covers the essential purpose, usage context, and core behavioral trait. It lacks explicit return-value information, but for a create/update tool the result is often self-evident. The combination of schema (100% parameter coverage) and description makes it sufficiently complete for an agent to invoke 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?

Schema coverage is 100%, so the parameters are already well-documented in the schema. The description adds valuable semantic context by highlighting that 'platform' and 'user_id' serve as the unique key for the upsert operation, which is not apparent from the schema alone. This extra meaning earns a score above the baseline of 3.

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's function with a specific verb ('Create') and resource ('social account'), and adds the crucial 'upsert by platform + user_id' behavior that distinguishes it from the sibling 'pfm_create_social_account_auth_url' (which handles OAuth flow initiation). It conveys exactly what the tool does in one concise sentence.

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 provides explicit when-to-use guidance: 'Use this when you have OAuth tokens from your own auth flow.' This clearly differentiates it from the auth-url flow tool, though it does not explicitly name alternatives or state a when-not-to-use scenario. The context is clear enough for an agent to make the right choice.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_create_social_account_auth_urlA

Generate an OAuth URL to connect a user's social media account. Redirect the user to this URL; they'll be redirected back after auth. For Quickstart projects using Post for Me system credentials, redirect_url_override is not accepted — configure it in the dashboard instead. Include 'feeds' in permissions to later fetch the account feed and metrics.

ParametersJSON Schema
NameRequiredDescriptionDefault
platformYesThe social platform: facebook, instagram, x, tiktok, tiktok_business, youtube, pinterest, linkedin, bluesky, threads
external_idNoYour unique identifier for this social account
permissionsNoPermissions to request. Default: ['posts']. Include 'feeds' to enable account feed and metrics.
platform_dataNoExtra provider-specific data (required for bluesky; optional for others)
redirect_url_overrideNoCustom redirect URL after OAuth. Must be in your app's authorized redirect URLs. Not available with system credentials.

TDQS

A4.2/5.0
Behavior3/5

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

No annotations are present, so the description carries the full burden. It discloses a notable behavioral limitation (redirect_url_override is not accepted for Quickstart) and explains how permissions affect future behavior. However, it doesn't mention whether generating a URL creates a pending connection or has any side effects, leaving some safety ambiguity.

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 three sentences long, front-loaded with the primary action, and every sentence provides actionable information. No fluff or repetition of schema details. The structure is ideal for quick parsing by an AI agent.

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?

The tool has 5 parameters, nested objects, and no output schema, yet the description covers the essential flow and key caveats. While it doesn't mention platform_data requirements (like Bluesky's handle/app_password), the schema already documents these sufficiently. The description is complete enough for the tool's core function, though a bit more about the response format would have helped.

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?

Schema coverage is 100%, so the baseline is 3. The description adds value beyond the schema by clarifying that redirect_url_override is not available with system credentials and by advising to include 'feeds' for later feed access. These details help interpret the parameters correctly, pushing the score above 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 opens with a specific verb and resource: 'Generate an OAuth URL to connect a user's social media account.' This clearly distinguishes the tool from siblings like pfm_create_social_account, which likely creates an account record directly. It also explicitly describes the OAuth redirect flow, making the tool's function unmistakable.

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 provides immediate instructions: 'Redirect the user to this URL; they'll be redirected back after auth.' It also gives a usage constraint (Quickstart/system credentials) and a recommendation (include 'feeds'). However, it doesn't explicitly contrast with pfm_create_social_account or state when not to use this tool, so it stops short of full alternative guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_create_webhookA

Create a webhook to receive event notifications. Returns a secret in the response — store it to verify incoming requests via the 'Post-For-Me-Webhook-Secret' header. Available events: social.post.created, social.post.updated, social.post.deleted, social.post.result.created, social.account.created, social.account.updated.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesPublicly accessible URL to receive POST event payloads
event_typesYesEvents to subscribe to: social.post.created, social.post.updated, social.post.deleted, social.post.result.created, social.account.created, social.account.updated

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the full burden of disclosure. It discloses that a secret is returned and should be stored to verify incoming requests via the 'Post-For-Me-Webhook-Secret' header, which is valuable behavioral context beyond the schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences long, front-loaded with the core purpose, and includes only essential details (secret verification and event list). Every sentence earns its place 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?

Given the simple schema (2 required params) and no output schema, the description covers the essential points: purpose, return secret, and supported events. It does not explain the full response format or error cases, but for a create webhook tool this is reasonably complete.

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% for both parameters, so the baseline is 3. The description adds no additional parameter-specific meaning beyond what the schema already provides; it repeats the event list, which is already in the schema's event_types 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 clearly states the tool creates a webhook to receive event notifications. It uses a specific verb (create) and resource (webhook), and lists the available event types, making its purpose distinct from sibling tools like update/delete/get webhooks.

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 provides clear context for when to use this tool: to create a webhook for event notifications. It does not explicitly mention exclusions or alternatives, but the purpose is unambiguous and the sibling tools for updating/deleting are implicitly differentiated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_delete_postB

Delete a social post by its ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesPost ID to delete

TDQS

B3.4/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 but does not mention irreversibility, potential side effects (e.g., related media deletion), required permissions, or error behavior. A delete operation typically warrants a warning about permanence, which is absent.

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, front-loaded with the action, and contains zero superfluous words. It is highly concise and well-structured.

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?

Although the tool is simple (one param, no output schema), the description omits critical context for a delete operation, such as whether deletion is permanent or if there are cascading effects. The lack of any warning or clarification makes it incomplete for safe usage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with the parameter 'id' already documented as 'Post ID to delete'. The description adds no new meaning beyond what the schema provides. Baseline 3 is appropriate when the schema handles parameter documentation.

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 identifies the resource ('a social post') plus the required identifier ('by its ID'). This clearly distinguishes it from sibling tools like update_post or create_post.

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 usage: when you need to delete a social post. However, it does not explicitly state when to prefer this over alternatives (e.g., update_post) or provide any conditions or exclusions. No alternative tools are mentioned, so guidance is implicit rather than explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_delete_webhookB

Delete a webhook by its ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesWebhook ID to delete

TDQS

B3.4/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 the full burden. It only states that a delete occurs, but fails to disclose permanence, required permissions, side effects on associated data, or error behavior. For a destructive operation, this is a significant transparency 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, concise sentence that conveys the action without unnecessary wording. Every word earns its place.

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?

Given the tool's simplicity (one required parameter, no output schema), the description is mostly complete for its purpose. However, it lacks mention of side effects or irreversibility, which would add context for the agent. The low complexity and full schema coverage prevent this from being a major gap.

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% with the 'id' parameter described as 'Webhook ID to delete'. The description adds no new meaning beyond 'by its ID', so it does not enhance understanding of the parameter beyond the schema.

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 'Delete a webhook by its ID' uses a specific verb (delete) and resource (webhook) with a clear method (by ID), fully distinguishing it from sibling CRUD tools like pfm_get_webhook or pfm_update_webhook.

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 provides no guidance on when to use this tool versus alternatives, such as when a webhook should be deleted or how it relates to creating/updating webhooks. No exclusions or prerequisites are stated, leaving the agent without usage context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_disconnect_social_accountA

Disconnect a social account — removes all auth tokens and marks it as disconnected. The account record is kept and can be retrieved and reconnected by the owner.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesSocial account ID to disconnect

TDQS

A4.2/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It discloses that auth tokens are removed, the account is marked disconnected, the record is kept, and it can be reconnected by the owner. This is strong behavioral disclosure, though it omits potential edge cases like idempotency or permission requirements.

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?

Two sentences with no redundancy. The first sentence states the action and its immediate effects (removes tokens, marks disconnected), while the second clarifies retention and reconnection. Every word contributes meaning.

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 tool with a single parameter and no output schema, the description covers the essential behavioral outcomes, record retention, and recovery path. It could mention error conditions or idempotency, but overall it is sufficiently complete for the tool's simplicity.

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% with a clear description for the 'id' parameter. The tool description adds behavioral context (record kept, reconnection) but doesn't provide additional parameter-specific details beyond what the schema already states.

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 'Disconnect' with the resource 'social account', and explicitly distinguishes from deletion by stating the record is kept. This differentiates it clearly from sibling tools like create/update/get social account.

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 when to use this tool (to disconnect while retaining the record for potential reconnection). It doesn't explicitly name alternatives or exclusions, but the absence of a delete_social_account sibling and the retention clause provides sufficient context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_get_account_feedA

Get the social media feed for a connected account — every post made under that account, including posts not created through Post for Me. Pass expand=['metrics'] to include analytics (views, likes, follows, etc.). Requires the account to have been connected with 'feeds' permission. Supported: Instagram, Facebook, TikTok, TikTok Business, YouTube, Threads, X, Bluesky, Pinterest, LinkedIn.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax items to return (default: 50). Some platforms cap this lower and will return their max.
cursorNoCursor from a previous response for pagination
expandNoPass ['metrics'] to include post analytics data in the response
social_post_idNoFilter by Post for Me social post IDs (OR logic), e.g. sp_xxxxxx
external_post_idNoFilter by Post for Me external post IDs (OR logic)
platform_post_idNoFilter by platform-native post IDs (OR logic)
social_account_idYesSocial account ID (e.g. spc_xxxxxx)

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the full burden of disclosing behavior. It clearly states the scope (every post, including non-Post-for-Me), the permission requirement ('feeds' permission), and the optional analytics via expand. It does not describe error behavior or return structure, but it provides meaningful context beyond the schema.

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 three sentences, front-loaded with the purpose and scope, followed by a practical usage tip and prerequisites. Every sentence contributes value, with no redundancy or fluff.

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?

Given 7 parameters, 100% schema coverage, and no output schema, the description sufficiently covers the tool's core behavior, permission requirement, supported platforms, and the expand option. It leaves pagination and filtering details to the schema, which is acceptable. It could mention return format, but the absence of an output schema makes this less critical.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds a usage example for the expand parameter ('Pass expand=['metrics']'), which reinforces the schema, but does not elaborate on other parameters beyond what the schema already documents. The addition is minor, 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 uses a specific verb 'Get' and clearly identifies the resource as the social media feed for a connected account, with the scope 'every post made under that account.' It explicitly distinguishes this from sibling tools by noting it includes posts not created through Post for Me, which differentiates pfm_get_account_feed from pfm_get_posts.

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 provides clear context on when to use this tool (retrieving the full account feed), a prerequisite (requires 'feeds' permission), and a list of supported platforms. It does not explicitly name alternative tools or state when not to use it, but the distinction from Post-for-Me-only posts implies the difference from pfm_get_posts.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_get_postA

Get a single social post by its ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesPost ID

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description must convey behavioral traits itself. It communicates that this is a read operation for a single post by ID, which is useful. However, it does not disclose any error behavior, authentication requirements, or return format, leaving some gaps.

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 action and resource. It contains zero filler or redundant information, making it optimally concise.

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?

Given the simplicity of the tool (one required parameter, no output schema), the description provides enough context for an agent to understand what it does and when to use it. The only minor omission is a description of the return value, but for a simple getter, this is largely self-evident.

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 input schema already documents the only parameter 'id' with a description ('Post ID'), achieving 100% coverage. The description adds no additional parameter semantics beyond confirming the ID is used to fetch the post, so the baseline of 3 applies.

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 'Get' and clearly identifies the resource as 'a single social post' with the scope 'by its ID'. This distinguishes it from the sibling tool pfm_get_posts, which presumably retrieves multiple posts.

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 'by its ID' clearly indicates this tool is for retrieving one specific post when the ID is known, providing clear usage context. However, it does not explicitly mention alternatives or when not to use it, hence not a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_get_post_resultA

Get a single social post result by its ID. Includes success/failure, errors, platform_data (ID + URL), and media.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesPost result ID

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses the response structure (success/failure, errors, platform_data, media), which is useful, but it does not mention behavior for missing IDs, error conditions, or any side effects. The mention of 'errors' adds some transparency but not complete behavioral disclosure.

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, well-structured sentence that front-loads the action and directly lists key response elements. No unnecessary words or repetition, making it concise and easy to scan.

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 get-by-ID tool with one parameter and no output schema, the description effectively covers the main response components (success/failure, errors, platform_data, media). It could mention not-found behavior or auth requirements, but the listed fields provide a useful mental model for an agent.

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 input schema already provides 100% coverage for the single parameter 'id' with description 'Post result ID'. The description adds no additional semantics beyond 'by its ID', so it aligns with the high schema coverage and earns the baseline score.

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 verb (Get), the resource (a single social post result), and the identifier (by its ID). It distinguishes from sibling 'pfm_get_post_results' by emphasizing 'single' and listing specific return fields, leaving no ambiguity about the tool's scope.

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 usage when you have a post result ID and need details about it. It does not explicitly mention alternatives or exclusions, such as when to use pfm_get_post_results instead, so the guidance is merely implied rather than explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_get_post_resultsA

Get a paginated list of social post results. Filter by post IDs, platform(s), or social account IDs (all use OR logic). Results show success/failure, errors, platform URL, and per-platform data.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of items to return (default: 50)
offsetNoNumber of items to skip (default: 0)
post_idNoFilter by post IDs (OR logic)
platformNoFilter by platform(s) (OR logic): x, facebook, instagram, etc.
social_account_idNoFilter by social account IDs (OR logic)

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses pagination, OR logic for filters, and the contents of the result (success/failure, errors, platform URL, per-platform data). This adds meaningful context beyond a simple 'get' operation, though it does not cover rate limits or authorization.

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 concise, front-loaded with the main purpose, and every sentence adds information. It is effectively three short sentences with no fluff or repetition.

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 read-only list tool with 5 optional parameters and no output schema, the description explains pagination, filtering, and response contents. However, it does not clarify how filters from different groups combine (e.g., AND vs OR across types), which is a minor gap in completeness.

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% and each parameter already has a description. The description adds a brief summary that all filters use OR logic, but this mostly repeats schema details. It does not provide additional parameter-level meaning beyond what the schema already offers.

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 gets a paginated list of social post results, with a specific verb and resource. It distinguishes itself from the singular sibling pfm_get_post_result by explicitly saying 'list' and describing pagination.

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 usage for retrieving multiple post results with filtering, but does not explicitly name alternatives or state when NOT to use it. No comparison to pfm_get_post_result or pfm_get_posts is provided, so the guidance is only implied.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_get_postsA

Get a paginated list of social posts. Filter by platform, status, external ID, or social account ID. Multiple filter values use OR logic.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of items to return (default: 50)
offsetNoNumber of items to skip (default: 0)
statusNoFilter by post status (OR logic): draft, scheduled, processing, processed
platformNoFilter by platforms (OR logic): bluesky, facebook, instagram, linkedin, pinterest, threads, tiktok, x, youtube
external_idNoFilter by your external IDs (OR logic)
social_account_idNoFilter by social account IDs (OR logic)

TDQS

A3.8/5.0
Behavior3/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 does disclose pagination and the OR-logic behavior for multiple filter values, which is a useful non-obvious trait. However, it omits other behavioral details such as sorting, default return when no filters are applied, or pagination metadata. These gaps prevent a higher score.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences, front-loaded with the core purpose ('Get a paginated list of social posts') followed by succinct filter details. Every word earns its place; there is no fluff or restatement. It is highly efficient and effectively structured.

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?

Given the tool's moderate complexity (6 params, no output schema, no annotations), the description provides a solid overview: it names the resource, mentions pagination, and lists all filter categories with OR logic. It does not describe the response shape, but for a list operation this is partially implied. The only notable gap is the absence of any mention of return format or sorting, but overall it is sufficiently complete for an agent to select and invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description merely summarizes the filter parameters and repeats the OR logic that is already documented in each parameter's schema description. It adds no new semantic meaning beyond what the schema provides, so no bonus is warranted.

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 'Get a paginated list of social posts' with specific verbs and resource. It distinguishes from sibling tools like pfm_get_post (singular) by specifying 'paginated list' and listing filter dimensions. The purpose is unambiguous and actionable.

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?

Usage is implied through the phrase 'Get a paginated list' and the filter options, indicating this tool is for listing/searching posts. However, it does not explicitly state when to use this over alternatives like pfm_get_post (for a single post), nor does it provide exclusions or alternative guidance. The advice is implicit rather than explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_get_social_accountA

Get a single social account by its ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesSocial account ID (e.g. spc_xxxxxx)

TDQS

A3.5/5.0
Behavior2/5

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

The description provides no behavioral context beyond the operation itself. It does not disclose what happens if the ID is invalid, whether authentication is required, or the return format. With no annotations, the description carries the full burden and fails to address these aspects.

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 succinct sentence that immediately states the tool's purpose. It is front-loaded and contains no redundant information.

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?

For a simple single-resource retrieval, the description covers the basic purpose and parameter, but it lacks details about return values or error handling. Given no output schema and no annotations, a bit more context would improve completeness.

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 with a description and example. The description adds no additional semantic value beyond what the schema already provides, so the baseline of 3 applies.

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 gets a single social account by ID. It uses a specific verb and resource, and the word 'single' distinguishes it from the sibling tool pfm_get_social_accounts.

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 retrieving one specific account when you know its ID, but it does not explicitly mention alternatives or when not to use it. The sibling pfm_get_social_accounts exists for listing, yet no direct comparison is provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_get_social_accountsA

Get a paginated list of connected social accounts. Filter by platform, username, external ID, account ID, or connection status. All filters use OR logic.

ParametersJSON Schema
NameRequiredDescriptionDefault
idNoFilter by account IDs (OR logic), e.g. spc_xxxxxx
limitNoNumber of items to return (default: 50)
offsetNoNumber of items to skip (default: 0)
statusNoFilter by status (OR logic): connected, disconnected
platformNoFilter by platform(s) (OR logic): x, facebook, instagram, linkedin, etc.
usernameNoFilter by username(s) (OR logic)
external_idNoFilter by your external IDs (OR logic)

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden of behavioral disclosure. It adds useful context about pagination and OR logic for filters, but it does not explain return format, default limit, ordering, or whether the 'connected' wording is restrictive despite the status filter allowing disconnected accounts.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences, front-loaded with the main purpose, and every word earns its place. No fluff or 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 moderately complex list tool with 7 parameters and no output schema or annotations, the description covers the essential aspects: pagination, filterable fields, and OR logic. It lacks information about return value structure or default behaviors, but it is sufficiently complete for a straightforward listing operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% for all 7 parameters, so the baseline is 3. The description adds the general statement 'All filters use OR logic', which reinforces what is already in each parameter's schema description. It does not add significant new meaning beyond that.

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 'Get a paginated list of connected social accounts', specifying the verb (Get), resource (social accounts), and scope (paginated list). It distinguishes itself from the sibling tool pfm_get_social_account (singular) by implying list semantics.

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 usage for retrieving multiple social accounts with filters, but it does not explicitly mention when to use this tool over the singular pfm_get_social_account or other alternatives. No exclusions or specific scenarios are stated, so usage guidance remains implicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_get_webhookA

Get a single webhook by its ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesWebhook ID (e.g. wbh_xxxxxx)

TDQS

A3.5/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 the full burden. It does not disclose any behavioral traits such as return format, error handling, authentication needs, or that it is read-only beyond what the verb 'Get' implies.

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?

A single, front-loaded sentence conveys the essential action and scope with no unnecessary words. It is appropriately concise for a simple getter.

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?

For a simple one-parameter read operation, the description is adequate but minimal. Since there is no output schema or annotations, the description lacks context on response structure, potential errors, or any additional behavior that might be relevant for the AI agent.

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 already provides 100% coverage for the single parameter 'id' with a clear description and example format. The tool description adds only 'by its ID', which does not exceed what the schema already communicates.

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 ('Get') and resource ('webhook') and clearly specifies the scope ('single webhook by its ID'). It distinguishes from the plural sibling tool pfm_get_webhooks, which lists all webhooks.

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 wording implies usage when you have a specific webhook ID and need that one webhook. However, it does not explicitly state alternatives or when not to use it, leaving room for interpretation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_get_webhooksA

Get a paginated list of webhooks. Filter by URL, event type, or webhook ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
idNoFilter by webhook IDs (OR logic), e.g. wbh_xxxxxx
urlNoFilter by webhook URLs (OR logic)
limitNoNumber of items to return (default: 50)
offsetNoNumber of items to skip (default: 0)
event_typeNoFilter by event types (OR logic): social.post.created, social.post.updated, social.post.deleted, social.post.result.created, social.account.created, social.account.updated

TDQS

A3.8/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 the full burden. It mentions 'paginated list' but that is also evidenced by the limit/offset parameters in the schema. There is no disclosure of authentication needs, rate limits, sorting behavior, or response format, providing minimal behavioral insight beyond the schema.

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 that effectively communicates the core purpose and key capabilities without unnecessary words.

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?

Given the tool's simplicity and rich schema with all parameters documented, the description is fairly complete. It covers the list nature and filtering, and with no output schema, the 'list' wording implies the return type. Minor gaps like sorting or default behavior are not critical for this straightforward read operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% with detailed parameter descriptions for each filter and pagination parameter. The description does not add any semantics beyond what the schema already provides, so baseline of 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 'Get a paginated list of webhooks', which is a specific verb and resource. It distinguishes from sibling tool pfm_get_webhook (singular) by emphasizing a list, and the filtering options are summarized.

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 usage for retrieving multiple webhooks with pagination and filtering. It provides clear context for a list operation, though it does not explicitly name alternatives or exclusions such as using pfm_get_webhook for a single webhook.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_update_postA

Update an existing social post (replaces the entire post definition). Use the same schema as create — all fields are re-set.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesPost ID to update
mediaNoMedia items to attach
captionYesCaption/body text for the post
isDraftNoIf true, save as draft — post will not be processed
external_idNoYour own unique identifier for this post
scheduled_atNoISO 8601 datetime to schedule the post; omit to post immediately
social_accountsYesArray of social account IDs to post to
account_configurationsNo
platform_configurationsNo

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description must disclose behavioral traits. It does highlight the critical full-replacement behavior ('all fields are re-set'), but it omits other important aspects like return values, error handling, or whether the update triggers re-publishing to social accounts.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences that immediately state the purpose, then clarify the key behavior. No word is wasted, and it is front-loaded for quick comprehension.

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?

Given the extremely complex schema, no output schema, and no annotations, the description is too thin. It fails to explain return values, prerequisites like the post needing to exist, or side effects. For such a complex mutation tool, this is a significant gap.

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 covers 78% of parameters, and the description adds meaning by confirming the parameter set is exactly the same as create and that all fields are re-set. This helps the agent know that all create parameters apply and are fully overwritten, which is useful beyond the raw schema.

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's function: 'Update an existing social post' with the crucial detail that it 'replaces the entire post definition.' This specific verb+resource pairing distinguishes it from sibling tools like create_post and delete_post.

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 when to use this tool—when updating an existing post rather than creating one—and points to the create schema for consistency. However, it does not explicitly mention alternatives or warn against partial updates, so it stops short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_update_social_accountC

Update a social account's username or external_id.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesSocial account ID to update
usernameNoNew platform username
external_idNoNew external ID

TDQS

C2.7/5.0
Behavior1/5

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

No annotations are provided, so the description is the only source of behavioral information. It does not disclose whether updates are partial or full, whether username and external_id can be updated together, idempotency, error conditions, or any side effects. This is a significant 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.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single clear sentence that is easy to parse and front-loads the action and resource. It is appropriately concise for a simple update tool, though it lacks depth in other areas.

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?

With three parameters, no annotations, and no output schema, the description is insufficiently complete. It does not explain expected outcomes, partial update behavior, or any constraints. For a straightforward API, basic info is present, but the lack of behavioral details makes it incomplete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so each parameter is already described. The description adds 'username or external_id,' reinforcing the two updateable fields, but does not clarify if both can be supplied simultaneously or if they are mutually exclusive. It meets the baseline but adds little beyond the schema.

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 clearly states the action ('Update') and the resource ('a social account'), and specifies the two fields that can be updated ('username or external_id'). It distinguishes from siblings like create or disconnect, though it doesn't explicitly mention it only updates these fields and not others.

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?

There is no guidance on when to use this tool vs alternatives such as create_social_account or disconnect_social_account. The description simply states what it does without any context, prerequisites, or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pfm_update_webhookA

Update a webhook's URL and/or subscribed event types.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesWebhook ID to update
urlNoNew public URL for the webhook
event_typesNoNew list of event types to subscribe to

TDQS

A3.5/5.0
Behavior2/5

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

With no annotations, the description carries full burden for behavioral disclosure. It mentions the 'and/or' partial-update capability, but does not disclose permissions, idempotency, error conditions, return values, or what 'update' means operationally (e.g., whether missing fields are left unchanged). This is a mutation tool with minimal transparency.

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 redundant or filler content. It conveys the essential purpose and scope efficiently.

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?

This is a simple update tool with a comprehensive input schema, but no output schema and no annotations. The description covers the primary function but lacks guidance on partial-update behavior, required permissions, or expected response. It is minimally viable but leaves room for more context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already defines id, url, and event_types with descriptions and an enum. The description adds little beyond confirming these are the updatable fields; the 'and/or' phrasing adds slight semantic value about independence of updates, but not enough to exceed 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 states a clear action ('Update') on a specific resource ('a webhook') with the specific updatable aspects ('URL and/or subscribed event types'). This distinguishes it clearly from sibling tools like create_webhook, get_webhook, and delete_webhook.

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 usage for modifying an existing webhook, but provides no explicit guidance on when to use it versus alternatives (e.g., when to use create_webhook instead) nor any exclusions or prerequisites. It's enough to infer the primary use case.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 21 tool updatesv1.0.2
    • First observedpfm_create_media_upload_url
    • First observedpfm_create_post
    • First observedpfm_create_post_previews
    • First observedpfm_create_social_account
    • First observedpfm_create_social_account_auth_url
    • First observedpfm_create_webhook
    • First observedpfm_delete_post
    • First observedpfm_delete_webhook
    • First observedpfm_disconnect_social_account
    • First observedpfm_get_account_feed
    • First observedpfm_get_post
    • First observedpfm_get_post_result
    • First observedpfm_get_post_results
    • First observedpfm_get_posts
    • First observedpfm_get_social_account
    • First observedpfm_get_social_accounts
    • First observedpfm_get_webhook
    • First observedpfm_get_webhooks
    • First observedpfm_update_post
    • First observedpfm_update_social_account
    • First observedpfm_update_webhook

TDQS

A3.8/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: posts, post results, social accounts, media uploads, webhooks, and previews are all clearly separated. Even the list/single pairs like pfm_get_posts vs pfm_get_post_results are differentiated by their purpose and filters.

Naming Consistency5/5

All tool names follow a consistent pfm_<verb>_<object> pattern using snake_case. Verbs are consistently create, get, update, delete, disconnect, and the objects are descriptive, making the API predictable and easy to navigate.

Tool Count4/5

With 21 tools, the count is slightly high but justified by the server's clear scope covering three subdomains: posts, accounts, and webhooks. Each tool has a specific purpose and the count is not inflated with redundant operations.

Completeness5/5

The surface provides full lifecycle coverage for posts (create, read, update, delete, list, results, previews, media uploads), accounts (create, read, update, disconnect, auth URL, feed), and webhooks (CRUD). The only minor gap is per-post analytics, but pfm_get_account_feed covers metrics when expanded.

Maintenance

ActivitySlowing
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

  • A
    license
    A
    quality
    A
    maintenance
    Enables AI assistants to schedule and publish social media posts to platforms like Instagram, TikTok, YouTube, LinkedIn, Facebook, X, Threads, and Pinterest using natural language.
    33
    163
    3
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Social media API and MCP server for AI agents that enables publishing to X, Instagram, LinkedIn, Reddit, Bluesky, and Threads from a single endpoint.
    28
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Lets any AI agent post to TikTok, Instagram, YouTube, X, LinkedIn, Bluesky, Telegram, Mastodon and Discord through a single post_to_social tool. Connect an account once, then publish everywhere.
    2
    191
    MIT

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/NerdSnipe-Inc/postforme-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server