RemixPost MCP Server
A Model Context Protocol (MCP) server that repurposes content for multiple social media platforms using AI.
Features
- Repurpose any content - Transform articles, blog posts, or raw text into platform-optimized content
- URL support - Pass a URL and the server extracts content automatically
- Multi-platform output:
- Twitter: 5-tweet thread with hooks and engagement
- LinkedIn: Professional post with bullet points and hashtags
- Instagram: Casual caption with emojis and hashtags
- Newsletter: Curiosity-driven intro paragraph
Installation
npm install
npm run build
Configuration
Set your Anthropic API key:
export ANTHROPIC_API_KEY="your-key-here"
Usage
With Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"remixpost": {
"command": "node",
"args": ["/path/to/remixpost-mcp/dist/index.js"],
"env": {
"ANTHROPIC_API_KEY": "your-key-here"
}
}
}
}
With MCP CLI
npm start
Tool: repurpose_content
Input Schema
| Parameter | Type | Required | Description |
|---|---|---|---|
| content | string | Yes | Text content or URL to repurpose |
| platforms | array | No | Platforms to target. Default: all |
Valid platforms: twitter, linkedin, instagram, newsletter
Example Request
{
"content": "https://example.com/blog-post",
"platforms": ["twitter", "linkedin"]
}
Example Response
{
"twitter": [
"🚀 Just discovered something that changed how I think about productivity...",
"The key insight: your morning routine isn't about the routine itself...",
"Here's what most people get wrong...",
"The fix is simple but counterintuitive...",
"Try this tomorrow and let me know how it goes 👇"
],
"linkedin": "I've been rethinking productivity lately.\n\n→ Most advice focuses on doing more\n→ But the real gains come from doing less, better\n→ Here's what I learned...\n\n#productivity #leadership #growth"
}
Development
# Run in dev mode
npm run dev
# Build for production
npm run build
License
MIT