Content Core▌
by lfnovo
Extract text and audio from URLs, docs, videos, and images with AI voice generator and text to speech for unified conten
Extracts content from diverse media sources including URLs, documents, videos, audio files, and images using intelligent auto-detection and multiple extraction engines for unified content processing and analysis.
Both formats append explainx.ai attribution and the canonical URL for this MCP server listing.
best for
- / Content researchers analyzing diverse media sources
- / Data analysts processing mixed document formats
- / AI developers building content processing pipelines
- / Anyone needing to extract text from various file types
capabilities
- / Extract text from PDFs, Word docs, and other documents
- / Transcribe videos and audio files to text
- / Extract content from web URLs
- / Perform OCR on images to extract text
- / Process ZIP archives and other compressed files
- / Generate AI summaries of extracted content
what it does
Extracts and processes content from URLs, documents, videos, audio files, and images into clean, structured text. Uses AI to automatically detect media types and apply the right extraction method.
about
Content Core is a community-built MCP server published by lfnovo that provides AI assistants with tools and capabilities via the Model Context Protocol. Extract text and audio from URLs, docs, videos, and images with AI voice generator and text to speech for unified conten It is categorized under ai ml, productivity. This server exposes 1 tool that AI clients can invoke during conversations and coding sessions.
how to install
You can install Content Core in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
license
MIT
Content Core is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
readme
Content Core
Content Core is a powerful, AI-powered content extraction and processing platform that transforms any source into clean, structured content. Extract text from websites, transcribe videos, process documents, and generate AI summaries—all through a unified interface with multiple integration options.
🚀 What You Can Do
Extract content from anywhere:
- 📄 Documents - PDF, Word, PowerPoint, Excel, Markdown, HTML, EPUB
- 🎥 Media - Videos (MP4, AVI, MOV) with automatic transcription
- 🎵 Audio - MP3, WAV, M4A with speech-to-text conversion
- 🌐 Web - Any URL with intelligent content extraction
- 🖼️ Images - JPG, PNG, TIFF with OCR text recognition
- 📦 Archives - ZIP, TAR, GZ with content analysis
Process with AI:
- ✨ Clean & format extracted content automatically
- 📝 Generate summaries with customizable styles (bullet points, executive summary, etc.)
- 🎯 Context-aware processing - explain to a child, technical summary, action items
- 🔄 Smart engine selection - automatically chooses the best extraction method
🛠️ Multiple Ways to Use
🖥️ Command Line (Zero Install)
# Extract content from any source
uvx --from "content-core" ccore https://example.com
uvx --from "content-core" ccore document.pdf
# Generate AI summaries
uvx --from "content-core" csum video.mp4 --context "bullet points"
🤖 Claude Desktop Integration
One-click setup with Model Context Protocol (MCP) - extract content directly in Claude conversations.
🔍 Raycast Extension
Smart auto-detection commands:
- Extract Content - Full interface with format options
- Summarize Content - 9 summary styles available
- Quick Extract - Instant clipboard extraction
🖱️ macOS Right-Click Integration
Right-click any file in Finder → Services → Extract or Summarize content instantly.
🐍 Python Library
import content_core as cc
# Extract from any source
result = await cc.extract("https://example.com/article")
summary = await cc.summarize_content(result, context="explain to a child")
⚡ Key Features
- 🎯 Intelligent Auto-Detection: Automatically selects the best extraction method based on content type and available services
- 🔧 Smart Engine Selection:
- URLs: Firecrawl → Jina → Crawl4AI (optional) → BeautifulSoup fallback chain
- Documents: Docling → Enhanced PyMuPDF → Simple extraction fallback
- Media: OpenAI Whisper transcription
- Images: OCR with multiple engine support
- 📊 Enhanced PDF Processing: Advanced PyMuPDF engine with quality flags, table detection, and optional OCR for mathematical formulas
- 🌍 Multiple Integrations: CLI, Python library, MCP server, Raycast extension, macOS Services
- ⚡ Zero-Install Options: Use
uvxfor instant access without installation - 🧠 AI-Powered Processing: LLM integration for content cleaning and summarization
- 🔄 Asynchronous: Built with
asynciofor efficient processing - 🐍 Pure Python Implementation: No system dependencies required - simplified installation across all platforms
Getting Started
Installation
Install Content Core using pip - no system dependencies required!
# Basic installation (PyMuPDF + BeautifulSoup/Jina extraction)
pip install content-core
# With enhanced document processing (adds Docling)
pip install content-core[docling]
# With local browser-based URL extraction (adds Crawl4AI)
# Note: Requires Playwright browsers (~300MB). Run:
pip install content-core[crawl4ai]
python -m playwright install --with-deps
# Full installation (with all optional features)
pip install content-core[docling,crawl4ai]
Note: The core installation uses pure Python implementations and doesn't require system libraries like libmagic, ensuring consistent, hassle-free installation across Windows, macOS, and Linux. Optional features like Crawl4AI (browser automation) may require additional system dependencies.
Alternatively, if you’re developing locally:
# Clone the repository
git clone https://github.com/lfnovo/content-core
cd content-core
# Install with uv
uv sync
Command-Line Interface
Content Core provides three CLI commands for extracting, cleaning, and summarizing content: ccore, cclean, and csum. These commands support input from text, URLs, files, or piped data (e.g., via cat file | command).
Zero-install usage with uvx:
# Extract content
uvx --from "content-core" ccore https://example.com
# Clean content
uvx --from "content-core" cclean "messy content"
# Summarize content
uvx --from "content-core" csum "long text" --context "bullet points"
ccore - Extract Content
Extracts content from text, URLs, or files, with optional formatting. Usage:
ccore [-f|--format xml|json|text] [-d|--debug] [content]
Options:
-f,--format: Output format (xml, json, or text). Default: text.-d,--debug: Enable debug logging.content: Input content (text, URL, or file path). If omitted, reads from stdin.
Examples:
# Extract from a URL as text
ccore https://example.com
# Extract from a file as JSON
ccore -f json document.pdf
# Extract from piped text as XML
echo "Sample text" | ccore --format xml
cclean - Clean Content
Cleans content by removing unnecessary formatting, spaces, or artifacts. Accepts text, JSON, XML input, URLs, or file paths. Usage:
cclean [-d|--debug] [content]
Options:
-d,--debug: Enable debug logging.content: Input content to clean (text, URL, file path, JSON, or XML). If omitted, reads from stdin.
Examples:
# Clean a text string
cclean " messy text "
# Clean piped JSON
echo '{"content": " messy text "}' | cclean
# Clean content from a URL
cclean https://example.com
# Clean a file’s content
cclean document.txt
csum - Summarize Content
Summarizes content with an optional context to guide the summary style. Accepts text, JSON, XML input, URLs, or file paths.
Usage:
csum [--context "context text"] [-d|--debug] [content]
Options:
--context: Context for summarization (e.g., "explain to a child"). Default: none.-d,--debug: Enable debug logging.content: Input content to summarize (text, URL, file path, JSON, or XML). If omitted, reads from stdin.
Examples:
# Summarize text
csum "AI is transforming industries."
# Summarize with context
csum --context "in bullet points" "AI is transforming industries."
# Summarize piped content
cat article.txt | csum --context "one sentence"
# Summarize content from URL
csum https://example.com
# Summarize a file's content
csum document.txt
Quick Start
You can quickly integrate content-core into your Python projects to extract, clean, and summarize content from various sources.
import content_core as cc
# Extract content from a URL, file, or text
result = await cc.extract("https://example.com/article")
# Clean messy content
cleaned_text = await cc.clean("...messy text with [brackets] and extra spaces...")
# Summarize content with optional context
summary = await cc.summarize_content("long article text", context="explain to a child")
# Extract audio with custom speech-to-text model
from content_core.common import ProcessSourceInput
result = await cc.extract(ProcessSourceInput(
file_path="interview.mp3",
audio_provider="openai",
audio_model="whisper-1"
))
Documentation
For more information on how to use the Content Core library, including details on AI model configuration and customization, refer to our Usage Documentation.
MCP Server Integration
Content Core includes a Model Context Protocol (MCP) server that enables seamless integration with Claude Desktop and other MCP-compatible applications. The MCP server exposes Content Core's powerful extraction capabilities through a standardized protocol.
<a href="https://glama.ai/mcp/servers/@lfnovo/content-core"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@lfnovo/content-core/badge" /> </a>Quick Setup with Claude Desktop
# Install Content Core (MCP server included)
pip install content-core
# Or use directly with uvx (no installation required)
uvx --from "content-core" content-core-mcp
Add to your claude_desktop_config.json:
{
"mcpServers": {
"content-core": {
"command": "uvx",
"args": [
"--from",
"content-core",
"content-core-mcp"
]
}
}
}
For detailed setup instructions, configuration options, and usage examples, see our MCP Documentation.
Enhanced PDF Processing
Content Core features an optimized PyMuPDF extraction engine with significant improvements for scientific documents and complex PDFs.
Key Improvements
- 🔬 Mathematical Formula Extraction: E
FAQ
- What is the Content Core MCP server?
- Content Core is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
- How do MCP servers relate to agent skills?
- Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
- How are reviews shown for Content Core?
- This profile displays 44 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.7 out of 5—verify behavior in your own environment before production use.
Use Cases▌
Extended AI Capabilities
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Context Enhancement
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Workflow Automation
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Implementation Guide▌
Prerequisites
- ›Claude Desktop 0.7.0+ or Cursor IDE with MCP support
- ›Basic understanding of MCP architecture and capabilities
- ›Access credentials for integrated services (if required)
- ›Willingness to experiment and iterate on configuration
Time Estimate
15-60 minutes depending on server complexity
Installation Steps
- 1.Install MCP server: npm install -g [package-name] or via GitHub
- 2.Add server configuration to ~/.claude/mcp.json
- 3.Provide required credentials and configuration
- 4.Restart Claude Desktop to load new server
- 5.Test basic functionality with simple prompts
- 6.Explore capabilities and experiment with use cases
- 7.Document successful patterns for reuse
Troubleshooting
- ⚠MCP server not loading: Check config syntax, verify installation
- ⚠Connection errors: Check network, firewall, credentials
- ⚠Feature not working: Read server docs, check required parameters
- ⚠Performance issues: Monitor resource usage, check for network latency
- ⚠Conflicts with other servers: Check port assignments, namespace collisions
Best Practices▌
✓ Do
- +Read server documentation thoroughly before setup
- +Start with simple use cases to validate functionality
- +Test in non-production environment first
- +Monitor resource usage and performance
- +Keep servers updated for bug fixes and new features
- +Document configuration for team members
- +Use environment variables for sensitive configuration
✗ Don't
- −Don't grant overly permissive access to MCP servers
- −Don't skip reading security considerations in docs
- −Don't expose sensitive data without proper controls
- −Don't run untrusted MCP servers without code review
- −Don't ignore error messages—investigate root cause
💡 Pro Tips
- ★Combine multiple MCP servers for powerful workflows
- ★Create custom MCP servers for your specific needs
- ★Share successful configurations with team
- ★Use MCP inspector for debugging
- ★Join MCP community for tips and troubleshooting
Technical Details▌
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
- Model Context Protocol (MCP)
- JSON-RPC 2.0
- stdio or HTTP transport
Compatibility
- Claude Desktop
- Cursor IDE
- Custom MCP clients
When to Use This▌
✓ Use When
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid When
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.
Integration▌
- →Tool composition: Chain multiple MCP tools in workflows
- →Context augmentation: Provide AI with relevant external data
- →Action delegation: Let AI execute tasks on external systems
- →Bidirectional sync: Keep AI context and external systems in sync
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
List & Promote Your MCP Server
Share your MCP server with the developer community
Ratings
4.7★★★★★44 reviews- ★★★★★Ganesh Mohane· Dec 20, 2024
Useful MCP listing: Content Core is the kind of server we cite when onboarding engineers to host + tool permissions.
- ★★★★★Lucas Iyer· Dec 20, 2024
I recommend Content Core for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
- ★★★★★Fatima Ghosh· Dec 8, 2024
According to our notes, Content Core benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
- ★★★★★Diego Perez· Dec 4, 2024
Content Core is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
- ★★★★★Noor Harris· Nov 27, 2024
Content Core has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
- ★★★★★Ren Harris· Nov 23, 2024
I recommend Content Core for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
- ★★★★★Kiara Sethi· Nov 15, 2024
Strong directory entry: Content Core surfaces stars and publisher context so we could sanity-check maintenance before adopting.
- ★★★★★Sakshi Patil· Nov 11, 2024
Content Core reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
- ★★★★★Kaira Thomas· Nov 11, 2024
Content Core is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
- ★★★★★Michael Taylor· Oct 18, 2024
We evaluated Content Core against two servers with overlapping tools; this profile had the clearer scope statement.
showing 1-10 of 44