Content Creator MCP Server
An MCP server for content creation that extracts video transcripts, scrapes web articles, and performs web searches.
README
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
- Python 3.10+
- FFmpeg installed and available in your system's PATH.
Installation
- Create a virtual environment:
python -m venv .venv - Activate the virtual environment:
# On Windows PowerShell .\.venv\Scripts\Activate.ps1 - 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
basemodel. - fetch_content: Extracts the main readable text content from a generic web page. Equipped with
curl_cffito spoof Chrome TLS fingerprints avoiding Cloudflare Recaptcha blocks, and automatically routes throughr.jina.aias a headless-browser proxy ultimate fallback. - web_search: Queries DuckDuckGo for web search results straight from your agent.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.