Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

An MCP server for content creation that extracts video transcripts, scrapes web articles, and performs web searches.

README.md

Content Creator MCP Server

An MCP server designed for content creation tools. It provides tools to extract the spoken script/transcript from YouTube/Instagram videos using yt-dlp and Whisper, robust web article scraping with browser spoofing using curl_cffi + Jina Reader, and DuckDuckGo web searching using ddgs.

Prerequisites

  1. Python 3.10+
  2. FFmpeg installed and available in your system's PATH.

Installation

  1. Create a virtual environment:
    python -m venv .venv
  1. Activate the virtual environment:
    # On Windows PowerShell
    .\.venv\Scripts\Activate.ps1
  1. Install dependencies:
    pip install -r requirements.txt

Running the Server

To test the server locally with the MCP Inspector:

mcp dev server.py

Integration: Google ADK (Agent Development Kit)

You can connect this MCP server to a Google ADK agent natively in Python:

import os
from google_genai.types import StdioServerParameters, StdioConnectionParams, McpToolset # Update your specific ADK imports

mcp_server_dir = r"C:\Users\Asus\Documents\V1_DOING_INTERSETING_INTERSETING_THINGS\ai\mcp-server-for-content-creatation"
python_exe = os.path.join(mcp_server_dir, ".venv", "Scripts", "python.exe")
server_script = os.path.join(mcp_server_dir, "server.py")

# Create the MCP Toolset
content_mcp_toolset = McpToolset(
    connection_params=StdioConnectionParams(
        server_params=StdioServerParameters(
            command=python_exe,
            args=[server_script],
            env={"PYTHONUNBUFFERED": "1", **os.environ}
        ),
        timeout=120.0  # Increased timeout for loading heavy ML libraries like Whisper
    )
)

Integration: Claude Desktop

Update your claude_desktop_config.json:

{
  "mcpServers": {
    "content-creator": {
      "command": "C:\\path\\to\\project\\.venv\\Scripts\\python.exe",
      "args": ["-m", "mcp", "run", "C:\\path\\to\\project\\server.py"]
    }
  }
}

Features

  • extract_video_script: Given a valid URL (YouTube, Instagram), it downloads only the optimal audio stream, converts it to mp3, and transcribes the speech to text using the Whisper base model.
  • fetch_content: Extracts the main readable text content from a generic web page. Equipped with curl_cffi to spoof Chrome TLS fingerprints avoiding Cloudflare Recaptcha blocks, and automatically routes through r.jina.ai as a headless-browser proxy ultimate fallback.
  • web_search: Queries DuckDuckGo for web search results straight from your agent.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.