MCP.so
Sign In
P

Post For Me

@DayMoonDevelopment

About Post For Me

Quickly integrate social media platforms directly into your product to power posting, feeds, analytics, and more through a single, simple API.

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "post_for_me_api": {
      "command": "npx",
      "args": [
        "-y",
        "post-for-me-mcp"
      ],
      "env": {
        "POST_FOR_ME_API_KEY": "My API Key"
      }
    }
  }
}

Tools

2

Runs JavaScript code to interact with the Post For Me API. You are a skilled TypeScript programmer writing code to interface with the service. Define an async function named "run" that takes a single parameter of an initialized SDK client and it will be run. For example: ``` async function run(client) { const socialPost = await client.socialPosts.create({ caption: 'My first post!', social_accounts: ['sa_1234'], media: [{ url: 'https://picsum.photos/1080' }], }); console.log(socialPost.id); } ``` You will be returned anything that your function returns, plus the results of any console.log statements. Do not add try-catch blocks for single API calls. The tool will handle errors for you. Do not add comments unless necessary for generating better code. Code will run in a container, and cannot interact with the network outside of the given SDK client. Variables will not persist between calls, so make sure to return or log any data you might need later. Remember that you are writing TypeScript code, so you need to be careful with your types. Always type dynamic key-value stores explicitly as Record<string, YourValueType> instead of {}.

Search SDK documentation to find methods, parameters, and usage examples for interacting with the API. Use this before writing code when you need to discover the right approach.

Overview

What is Post For Me?

Post For Me is an MCP server that enables AI assistants to interact with the Post For Me REST API. It allows assistants to explore endpoints, make test requests, and use documentation to help integrate the Post For Me SDK into an application.

How to use Post For Me?

Add the MCP server to your client (Cursor, VS Code) using the provided install links or by manually configuring the HTTP transport. The server URL is https://post-for-me.stlmcp.com and requires an API key passed in the x-post-for-me-api-key header. You may also need to set environment variables in your MCP client.

Key features of Post For Me

  • Explore Post For Me REST API endpoints from an AI assistant.
  • Make test API requests and inspect responses.
  • Access API documentation to assist SDK integration.
  • Interact with social post creation and management tools.

Use cases of Post For Me

  • Let AI assistants create and schedule social media posts.
  • Prototype API calls and review responses without writing code.
  • Onboard developers by letting AI explore API capabilities.
  • Automate social media publishing workflows via natural language.

FAQ from Post For Me

What transport does the Post For Me MCP server use?

The server uses HTTP transport.

How do I authenticate to the Post For Me MCP server?

You must provide your Post For Me API key as the x-post-for-me-api-key header when configuring the MCP client.

Do I need to install any runtime or dependencies to use the MCP server?

No. The MCP server is hosted remotely; you only need a compatible MCP client (e.g., Cursor, VS Code).

What can the Post For Me MCP server do?

It can explore endpoints, make test requests, and use API documentation to help integrate the Post For Me SDK into your application. The underlying API supports creating and managing social media posts.

Where does the API key come from?

The API key is the same one used for the Post For Me REST API. It should be set as an environment variable or provided directly in the MCP client configuration.

Frequently asked questions

What transport does the Post For Me MCP server use?

The server uses HTTP transport.

How do I authenticate to the Post For Me MCP server?

You must provide your Post For Me API key as the `x-post-for-me-api-key` header when configuring the MCP client.

Do I need to install any runtime or dependencies to use the MCP server?

No. The MCP server is hosted remotely; you only need a compatible MCP client (e.g., Cursor, VS Code).

What can the Post For Me MCP server do?

It can explore endpoints, make test requests, and use API documentation to help integrate the Post For Me SDK into your application. The underlying API supports creating and managing social media posts.

Where does the API key come from?

The API key is the same one used for the Post For Me REST API. It should be set as an environment variable or provided directly in the MCP client configuration.

Comments

More Other MCP servers