PostMCP MCP Server
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PORT | No | Setting this launches the server in Remote Streamable HTTP Mode. | None |
| POSTMCPAI_API_KEY | Yes | Required. Your secret API key from the PostMCP AI dashboard. | |
| POSTMCPAI_API_URL | No | The API root URL of your PostMCP AI backend service. | http://localhost:5023 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_user_infoA | Retrieve details of the logged-in user including subscription plan, credit balance, and AI token count. |
| get_connected_accountsA | List all active, connected social media channels and their associated profile usernames. |
| list_postsA | Retrieve a list of scheduled, published, and failed social media posts. |
| create_postC | Schedule or publish immediately a post to one or more social media platforms or specific accounts. |
| publish_post_nowA | Broadcast an existing scheduled post immediately to its platforms. |
| delete_postA | Cancel and delete a scheduled or failed post from the database. |
| update_postB | Update the fields (content, platforms, schedule date/time) of an existing post. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool targets a distinct resource or action: user info, connected accounts, and post management (list, create, publish, update, delete). The actions are clearly separated, and even create_post vs publish_post_now are distinguished by whether the post is new or existing.
All tool names follow a consistent verb_noun pattern in snake_case (get_user_info, list_posts, create_post, publish_post_now, delete_post, update_post). The naming is uniform and predictable.
Seven tools is well-scoped for a social media post management server. Each tool covers a necessary operation without redundancy or bloat, making the set easy to navigate.
The tool set provides full CRUD for posts (create, list, update, delete), plus a specialized publish action, and includes user/account context. This covers the core workflow of managing social media posts from scheduling to publication.