<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Tomas Lebedinskas</title>
    <description>The latest articles on Forem by Tomas Lebedinskas (@tomas_lebedinskas_dc6aaeb).</description>
    <link>https://forem.com/tomas_lebedinskas_dc6aaeb</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3875120%2F47e9ea22-695d-4bf6-8a18-c5bb13384bb1.jpg</url>
      <title>Forem: Tomas Lebedinskas</title>
      <link>https://forem.com/tomas_lebedinskas_dc6aaeb</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/tomas_lebedinskas_dc6aaeb"/>
    <language>en</language>
    <item>
      <title>How I Built a Content Repurposing MCP Server on Apify (and How to Use It)</title>
      <dc:creator>Tomas Lebedinskas</dc:creator>
      <pubDate>Wed, 15 Apr 2026 11:44:11 +0000</pubDate>
      <link>https://forem.com/tomas_lebedinskas_dc6aaeb/how-i-built-a-content-repurposing-mcp-server-on-apify-and-how-to-use-it-3pa4</link>
      <guid>https://forem.com/tomas_lebedinskas_dc6aaeb/how-i-built-a-content-repurposing-mcp-server-on-apify-and-how-to-use-it-3pa4</guid>
      <description>&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;If you've ever written a blog post and then had to manually repurpose it for Twitter, LinkedIn, Instagram, Facebook, and email — you know the pain. Each platform has different formats, character limits, tone expectations, and engagement patterns.&lt;/p&gt;

&lt;p&gt;I was spending 30-45 minutes per article just rewriting the same content for different platforms. Multiply that by 3-4 articles per week, and you're looking at hours of repetitive work that AI should be handling.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution: An MCP Server
&lt;/h2&gt;

&lt;p&gt;I built &lt;strong&gt;Content-to-Social MCP&lt;/strong&gt; — a hosted MCP server that takes any blog post or article URL and returns platform-optimized social media content for all 5 major platforms in a single call.&lt;/p&gt;

&lt;p&gt;Here's what it looks like in practice. You give it a URL:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Transform this article into social media posts:
https://example.com/blog/interesting-article
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And it returns ready-to-post content for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Twitter/X&lt;/strong&gt; — A thread with hook, key points, and CTA&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;LinkedIn&lt;/strong&gt; — Professional tone with industry insights&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Instagram&lt;/strong&gt; — Caption with relevant hashtags&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Facebook&lt;/strong&gt; — Conversational, shareable format&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Email newsletter&lt;/strong&gt; — Subject line + body snippet&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All optimized for each platform's best practices.&lt;/p&gt;

&lt;h2&gt;
  
  
  How It Works Under the Hood
&lt;/h2&gt;

&lt;p&gt;The architecture is simple:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;URL → Content Extraction&lt;/strong&gt; (Cheerio) — Fast HTML parsing, no headless browser needed. Extracts title, author, date, and the main article body.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Content → Platform Posts&lt;/strong&gt; (Claude Sonnet) — The extracted content is sent to Claude with platform-specific prompts that enforce character limits, tone, and formatting rules.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Hosted on Apify Standby&lt;/strong&gt; — The server runs on Apify's Standby mode, which means it's always warm and ready to respond. No cold starts, no server management, no Docker headaches.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The key technical decisions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Cheerio over Puppeteer&lt;/strong&gt; — 10x faster, 10x cheaper. Most blog content is in the initial HTML.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Streamable HTTP over SSE&lt;/strong&gt; — The MCP protocol recently moved to Streamable HTTP as the standard transport. This plays nicely with Apify's reverse proxy.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Stateless architecture&lt;/strong&gt; — No sessions, no state. Each request is independent. This makes scaling trivial.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How to Use It (3 Minutes Setup)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Option 1: Claude Desktop
&lt;/h3&gt;

&lt;p&gt;Add this to your Claude Desktop MCP config (&lt;code&gt;claude_desktop_config.json&lt;/code&gt;):&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"content-to-social"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"url"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://godberry--content-to-social-mcp.apify.actor/mcp"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"headers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"Authorization"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Bearer YOUR_APIFY_TOKEN"&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Replace &lt;code&gt;YOUR_APIFY_TOKEN&lt;/code&gt; with your Apify API token (free tier available at apify.com).&lt;/p&gt;

&lt;p&gt;Restart Claude Desktop. You now have 3 new tools:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;extract-article&lt;/code&gt; (free) — Preview what the server extracts from a URL&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;transform-for-platform&lt;/code&gt; ($0.03) — Generate content for a single platform&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;transform-content&lt;/code&gt; ($0.07) — Generate content for all 5 platforms at once&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Option 2: Any MCP-Compatible Client
&lt;/h3&gt;

&lt;p&gt;The endpoint works with Cursor, Windsurf, Cline, or any client that supports MCP over Streamable HTTP. Just point it at:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://godberry--content-to-social-mcp.apify.actor/mcp
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Option 3: Direct HTTP
&lt;/h3&gt;

&lt;p&gt;You can also call it directly via HTTP POST if you want to integrate it into your own tools:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-X&lt;/span&gt; POST https://godberry--content-to-social-mcp.apify.actor/mcp &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Authorization: Bearer YOUR_APIFY_TOKEN"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Content-Type: application/json"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="s1"&gt;'{"method":"tools/call","params":{"name":"transform-content","arguments":{"url":"https://example.com/article"}}}'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  The Business Model
&lt;/h2&gt;

&lt;p&gt;This runs on Apify's Pay-Per-Event pricing:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;$0.07&lt;/strong&gt; per full transformation (all 5 platforms)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;$0.03&lt;/strong&gt; per single-platform transformation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Free&lt;/strong&gt; article extraction (preview before you pay)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No monthly subscription. You pay only when you use it. For context, manually repurposing one article takes 30-45 minutes. At $0.07, this is roughly 1,000x cheaper than your time.&lt;/p&gt;

&lt;h2&gt;
  
  
  Lessons From Building This
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. Ship the simplest version first.&lt;/strong&gt; My first version tried to handle edge cases for every possible website. The shipping version just uses Cheerio with sensible defaults. It works on 90%+ of blog posts, and that's enough.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Apify Standby mode is underrated for MCP servers.&lt;/strong&gt; Most MCP server tutorials tell you to self-host with Docker. Apify's Standby mode gives you a persistent URL, auto-scaling, and built-in billing — without managing any infrastructure.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. The MCP ecosystem is moving fast.&lt;/strong&gt; When I started building, SSE was the standard transport. By the time I deployed, the ecosystem had shifted to Streamable HTTP. Stay close to the spec.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Content generation MCPs are different from tool MCPs.&lt;/strong&gt; Most MCP servers are "tool" servers — they connect AI to external APIs (Slack, GitHub, databases). Content generation servers create &lt;em&gt;new content&lt;/em&gt; from existing content. The market for this is still wide open.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Apify Store:&lt;/strong&gt; &lt;a href="https://apify.com/godberry/content-to-social-mcp" rel="noopener noreferrer"&gt;https://apify.com/godberry/content-to-social-mcp&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MCP Endpoint:&lt;/strong&gt; &lt;code&gt;https://godberry--content-to-social-mcp.apify.actor/mcp&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/Lebedinskas/content-to-social-mcp-server" rel="noopener noreferrer"&gt;https://github.com/Lebedinskas/content-to-social-mcp-server&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you're a content creator or marketer who uses Claude Desktop, give it a try and let me know what you think. I'm actively building based on user feedback.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;I write about MCP servers, web scraping, and automation at &lt;a href="https://godberrystudios.com" rel="noopener noreferrer"&gt;godberrystudios.com&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>apify</category>
      <category>typescript</category>
    </item>
    <item>
      <title>content-to-social-mcp</title>
      <dc:creator>Tomas Lebedinskas</dc:creator>
      <pubDate>Sun, 12 Apr 2026 16:00:11 +0000</pubDate>
      <link>https://forem.com/tomas_lebedinskas_dc6aaeb/content-to-social-mcp-49a9</link>
      <guid>https://forem.com/tomas_lebedinskas_dc6aaeb/content-to-social-mcp-49a9</guid>
      <description>&lt;p&gt;I spent 2.5 hours repurposing one blog post across 5 social platforms last week.&lt;/p&gt;

&lt;p&gt;So I built a tool that does it in 12 seconds for $0.07.&lt;/p&gt;

&lt;p&gt;Give it any article URL and it returns:&lt;br&gt;
→ Twitter/X thread (numbered, ≤280 chars each)&lt;br&gt;
→ LinkedIn post (insight-driven, with CTA)&lt;br&gt;
→ Instagram caption (with 20 hashtags)&lt;br&gt;
→ Facebook post (shareable format)&lt;br&gt;
→ Email newsletter snippet (with subject line)&lt;/p&gt;

&lt;p&gt;Here's a real example — I fed it an Apify blog post and got this LinkedIn output in seconds:&lt;/p&gt;

&lt;p&gt;"AI integration just shifted from experimentation to production reality. At the MCP Developers Summit in SF, teams from Anthropic, OpenAI, Bloomberg shared the same insight: Model quality isn't the bottleneck anymore. It's integration..."&lt;/p&gt;

&lt;p&gt;It runs as an MCP server — connect it to Claude Desktop and just ask it to transform any URL.&lt;/p&gt;

&lt;p&gt;Free to try the article extraction. Paid transforms are $0.03-$0.07.&lt;/p&gt;

&lt;p&gt;Would love honest feedback from anyone who repurposes content regularly — what would make this more useful?&lt;/p&gt;

&lt;p&gt;&lt;a href="https://apify.com/godberry/content-to-social-mcp" rel="noopener noreferrer"&gt;https://apify.com/godberry/content-to-social-mcp&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  MCP #ClaudeAI #AI #ContentMarketing
&lt;/h1&gt;

</description>
      <category>ai</category>
      <category>mcp</category>
      <category>productivity</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
