postforme-mcp-server
Allows managing social media posts, scheduling, publishing, and retrieving analytics on Bluesky through the Post for Me API.
Allows managing social media posts, scheduling, publishing, and retrieving analytics on Facebook through the Post for Me API.
Allows managing social media posts, scheduling, publishing, and retrieving analytics on Instagram through the Post for Me API.
Allows managing social media posts, scheduling, publishing, and retrieving analytics on Pinterest through the Post for Me API.
Allows managing social media posts, scheduling, publishing, and retrieving analytics on Threads through the Post for Me API.
Allows managing social media posts, scheduling, publishing, and retrieving analytics on TikTok through the Post for Me API.
Allows managing social media posts, scheduling, publishing, and retrieving analytics on YouTube through the Post for Me API.
PostforMe MCP Server
Give any AI agent — Claude, Cursor, Windsurf, or any MCP-compatible client — full control over your social media through natural language.
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 later — download here
A Post for Me account — sign up free
A Post for Me API key — takes 30 seconds to get (see below)
How to get your API key
Log in to your Post for Me dashboard
Navigate to Settings → API
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-serverOr install globally:
npm install -g @nerdsnipe-inc/postforme-mcp-server
# then run:
postforme-mcp-serverConnecting to AI Clients
Claude Desktop
Open (or create) your Claude Desktop config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%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_hereOr 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.jsonin your project root so everyone on the team picks it up automatically. Add.mcp.jsonto.gitignoreso your API key isn't committed.
Cursor
Open Cursor Settings → MCP (or press
Cmd+Shift+P→ "Open MCP Settings")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"
}
}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:
npxArgs:
["-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 |
| Request a signed upload URL for an image or video. Returns |
Social Posts
Posts support three levels of content override — the most specific wins:
Default — top-level
captionandmediaapply to all platformsPlatform —
platform_configurations.instagram,.x,.youtube, etc. override defaults per platformAccount —
account_configurations[].configurationoverrides per specific account
Tool | Description |
| Get a paginated list of social posts. Filter by platform, status ( |
| Create and schedule (or publish immediately) a post across one or more accounts. Omit |
| Get a single post by ID. |
| Replace an existing post's full definition. |
| 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 |
| Get a paginated list of post results. Filter by post ID, platform, or social account ID. |
| Get a single post result by ID. Includes |
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 |
| Get connected social accounts. Filter by platform, username, external ID, account ID, or status ( |
| Create or upsert a social account using your own OAuth tokens (bring-your-own auth flow). Matches on platform + user_id. |
| Get a single social account by ID. |
| Update a social account's username or external ID. |
| Generate an OAuth URL to connect a user's social platform account. Redirect the user to this URL. Include |
| 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 |
| Get all posts for a connected account, with optional |
Supported platforms and notes:
Instagram — metrics may take up to 48 hours to appear
Facebook — feeds with
expand=metricsare capped at 10 results by defaultTikTok — 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 |
| Get a paginated list of webhooks. Filter by URL, event type, or ID. |
| Create a webhook. Available events: |
| Get a single webhook by ID. |
| Update a webhook's URL and/or subscribed event types. |
| 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 |
| 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 |
| ✅ 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:
placement (reels / stories / timeline), collaborators, share_to_feed, location, trial_reel_type (manual / performance), audio_name
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
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 installPoint 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.jsDevelopment
# 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:coverageProject 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.mdAdding a new tool
Find the relevant module in
src/tools/(or create a new one)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);
}
},
}Import and spread it into
ALL_TOOLSinsrc/index.tsAdd handler tests in
tests/tools.test.tsRun
npm testto verify everything passesSubmit a PR!
Troubleshooting
The server isn't showing up in my AI client
Make sure Node.js 18+ is installed:
node --versionTry running
npx @nerdsnipe-inc/postforme-mcp-serverdirectly in a terminal to see any errorsRestart your AI client after changing MCP config
Getting "POSTFORME_API_KEY is not set" errors
Verify the
envblock in your MCP client config includesPOSTFORME_API_KEYOr create a
.envfile in your working directory withPOSTFORME_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_resultsfiltered by the post ID to see per-platform outcomesEach result includes an
errorfield explaining what went wrong on that platform
Account feed returns no data / 404
The account must have been connected with the
feedspermissionUse
pfm_create_social_account_auth_urlwithpermissions: ['posts', 'feeds']to reconnect it
Media upload fails
The signed
upload_urlfrompfm_create_media_upload_urlis short-lived — use it immediatelyPUT the file directly to the signed URL, then use the returned
media_urlin your post
Contributing
Pull requests are welcome! Please:
Fork the repo
Create a feature branch (
git checkout -b feature/my-new-tool)Add your changes and write tests (
npm testmust pass)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
Related
Post for Me — the social media scheduling and publishing platform behind the API
GoHighLevel MCP Server — our MCP server for GHL
Available Tools
21 toolspfm_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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| media | No | Media items to attach. For 'stories' placement, multiple items create individual posts. | |
| caption | Yes | Caption/body text for the post | |
| isDraft | No | If true, save as draft — post will not be processed | |
| external_id | No | Your own unique identifier for this post | |
| scheduled_at | No | ISO 8601 datetime to schedule the post; omit to post immediately | |
| social_accounts | Yes | Array of social account IDs to post to | |
| account_configurations | No | Account-specific content overrides | |
| platform_configurations | No | Platform-specific content overrides (pinterest, instagram, tiktok, tiktok_business, x, youtube, facebook, linkedin, bluesky, threads) |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| media | No | Media items to include in the preview | |
| caption | Yes | Caption text for the post | |
| account_configurations | No | Account-specific content overrides | |
| platform_configurations | No | Platform-specific content overrides (same schema as CreateSocialPostDto platform_configurations) | |
| preview_social_accounts | Yes | Social accounts to preview — can include non-connected accounts with placeholder IDs |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It 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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | The platform's user ID for this account | |
| metadata | No | Custom metadata for the account | |
| platform | Yes | Social media platform | |
| username | No | Platform username | |
| external_id | No | Your unique identifier for this account | |
| access_token | Yes | OAuth access token | |
| refresh_token | No | OAuth refresh token | |
| access_token_expires_at | Yes | ISO 8601 datetime when access token expires | |
| refresh_token_expires_at | No | ISO 8601 datetime when refresh token expires |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It 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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| platform | Yes | The social platform: facebook, instagram, x, tiktok, tiktok_business, youtube, pinterest, linkedin, bluesky, threads | |
| external_id | No | Your unique identifier for this social account | |
| permissions | No | Permissions to request. Default: ['posts']. Include 'feeds' to enable account feed and metrics. | |
| platform_data | No | Extra provider-specific data (required for bluesky; optional for others) | |
| redirect_url_override | No | Custom redirect URL after OAuth. Must be in your app's authorized redirect URLs. Not available with system credentials. |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Publicly accessible URL to receive POST event payloads | |
| event_types | Yes | Events to subscribe to: social.post.created, social.post.updated, social.post.deleted, social.post.result.created, social.account.created, social.account.updated |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Post ID to delete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the action 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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Webhook ID to delete |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Social account ID to disconnect |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max items to return (default: 50). Some platforms cap this lower and will return their max. | |
| cursor | No | Cursor from a previous response for pagination | |
| expand | No | Pass ['metrics'] to include post analytics data in the response | |
| social_post_id | No | Filter by Post for Me social post IDs (OR logic), e.g. sp_xxxxxx | |
| external_post_id | No | Filter by Post for Me external post IDs (OR logic) | |
| platform_post_id | No | Filter by platform-native post IDs (OR logic) | |
| social_account_id | Yes | Social account ID (e.g. spc_xxxxxx) |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Post ID |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Post result ID |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of items to return (default: 50) | |
| offset | No | Number of items to skip (default: 0) | |
| post_id | No | Filter by post IDs (OR logic) | |
| platform | No | Filter by platform(s) (OR logic): x, facebook, instagram, etc. | |
| social_account_id | No | Filter by social account IDs (OR logic) |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of items to return (default: 50) | |
| offset | No | Number of items to skip (default: 0) | |
| status | No | Filter by post status (OR logic): draft, scheduled, processing, processed | |
| platform | No | Filter by platforms (OR logic): bluesky, facebook, instagram, linkedin, pinterest, threads, tiktok, x, youtube | |
| external_id | No | Filter by your external IDs (OR logic) | |
| social_account_id | No | Filter by social account IDs (OR logic) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It 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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Social account ID (e.g. spc_xxxxxx) |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Filter by account IDs (OR logic), e.g. spc_xxxxxx | |
| limit | No | Number of items to return (default: 50) | |
| offset | No | Number of items to skip (default: 0) | |
| status | No | Filter by status (OR logic): connected, disconnected | |
| platform | No | Filter by platform(s) (OR logic): x, facebook, instagram, linkedin, etc. | |
| username | No | Filter by username(s) (OR logic) | |
| external_id | No | Filter by your external IDs (OR logic) |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Webhook ID (e.g. wbh_xxxxxx) |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Filter by webhook IDs (OR logic), e.g. wbh_xxxxxx | |
| url | No | Filter by webhook URLs (OR logic) | |
| limit | No | Number of items to return (default: 50) | |
| offset | No | Number of items to skip (default: 0) | |
| event_type | No | Filter 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
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Post ID to update | |
| media | No | Media items to attach | |
| caption | Yes | Caption/body text for the post | |
| isDraft | No | If true, save as draft — post will not be processed | |
| external_id | No | Your own unique identifier for this post | |
| scheduled_at | No | ISO 8601 datetime to schedule the post; omit to post immediately | |
| social_accounts | Yes | Array of social account IDs to post to | |
| account_configurations | No | ||
| platform_configurations | No |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Social account ID to update | |
| username | No | New platform username | |
| external_id | No | New external ID |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Webhook ID to update | |
| url | No | New public URL for the webhook | |
| event_types | No | New list of event types to subscribe to |
TDQS
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.
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.
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.
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.
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.
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.
21 tool updates
v1.0.2- First observed
pfm_create_media_upload_url - First observed
pfm_create_post - First observed
pfm_create_post_previews - First observed
pfm_create_social_account - First observed
pfm_create_social_account_auth_url - First observed
pfm_create_webhook - First observed
pfm_delete_post - First observed
pfm_delete_webhook - First observed
pfm_disconnect_social_account - First observed
pfm_get_account_feed - First observed
pfm_get_post - First observed
pfm_get_post_result - First observed
pfm_get_post_results - First observed
pfm_get_posts - First observed
pfm_get_social_account - First observed
pfm_get_social_accounts - First observed
pfm_get_webhook - First observed
pfm_get_webhooks - First observed
pfm_update_post - First observed
pfm_update_social_account - First observed
pfm_update_webhook
TDQS
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.
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.
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.
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
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
Connect any AI agent to 11+ social platforms: schedule, publish & track posts via hosted MCP.
Draft, schedule and publish social posts to nine platforms from any AI agent.
Post, schedule, and track social posts on X, Bluesky, LinkedIn, Instagram and more from AI agents.
- QuallaaOAuthcom.quallaa
Talk to your public-facing AI from any MCP client — Claude, ChatGPT, Cursor, Cline, Windsurf.
Related MCP Servers
- AlicenseAqualityAmaintenanceEnables AI assistants to schedule and publish social media posts to platforms like Instagram, TikTok, YouTube, LinkedIn, Facebook, X, Threads, and Pinterest using natural language.331633MIT
- AlicenseNot gradedqualityDmaintenanceSocial media API and MCP server for AI agents that enables publishing to X, Instagram, LinkedIn, Reddit, Bluesky, and Threads from a single endpoint.28MIT
- AlicenseAqualityBmaintenanceLets 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.2191MIT
- AlicenseNot gradedqualityCmaintenanceEnables generating, scheduling, and publishing social media posts via Claude or an agent through the MCP protocol.14MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/NerdSnipe-Inc/postforme-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server