home / mcp / remixpost mcp server

RemixPost MCP Server

Provides content repurposing across Twitter, LinkedIn, Instagram, and newsletters via an MCP endpoint.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "automatikstudio-remixpost-mcp": {
      "command": "node",
      "args": [
        "/path/to/remixpost-mcp/dist/index.js"
      ],
      "env": {
        "ANTHROPIC_API_KEY": "your-key-here"
      }
    }
  }
}

RemixPost MCP Server is a Model Context Protocol server that converts content into platform-optimized outputs for social media. It supports taking text or a URL, repurposing it for multiple channels, and delivering targeted results for Twitter, LinkedIn, Instagram, and newsletters, making content distribution faster and more consistent.

How to use

You use RemixPost MCP Server by running it as a local MCP endpoint and communicating with it through an MCP client. You can feed content or a URL to the server and request outputs for one or more platforms. The server then returns ready-to-publish content tailored to each target platform.

How to install

Prerequisites: Node.js is required on your machine. You should have npm available to install dependencies and run scripts.

Install dependencies and build the project.

npm install
npm run build

Additional sections

Configuration introduces the API key required by the server. You set the key in your environment before starting the server.

Environment variable you need to set:

export ANTHROPIC_API_KEY="your-key-here"

Configuration details and start commands

To run the server locally, you use a standard I/O configuration that launches the Node process and points to the built MCP index. The environment must include your Anthropic API key.

{
  "mcpServers": {
    "remixpost": {
      "command": "node",
      "args": ["/path/to/remixpost-mcp/dist/index.js"],
      "env": {
        "ANTHROPIC_API_KEY": "your-key-here"
      }
    }
  }
}

Using the MCP CLI

If you prefer to start the MCP server through the command line, you can use the standard start flow shown in the project setup.

pm start

Available tools

repurpose_content

Tool to repurpose text content or a URL into platform-specific outputs for Twitter, LinkedIn, Instagram, and newsletters. Accepts content and optional platforms and returns ready-to-publish content for each target platform.