The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Content Core listing page.
Extract, process, and summarize content from URLs, files, and text through a unified async Python API, CLI, or MCP server.
| Category | Formats |
|---|---|
| Web | URLs, HTML pages, YouTube videos, Reddit posts |
| Documents | PDF, DOCX, PPTX, XLSX, EPUB, HTML, Markdown, plain text |
| Media | MP3, WAV, M4A, FLAC, OGG (audio); MP4, AVI, MOV, MKV (video) |
Or with zero install:
Content Core provides a unified content-core command with subcommands for extraction, summarization, and MCP server.
Config is stored in ~/.content-core/config.toml. Priority: command flags > env vars > config file > defaults.
All commands work without installation using uvx:
Content Core includes a Model Context Protocol (MCP) server for use with Claude Desktop and other MCP-compatible applications.
Add to your claude_desktop_config.json:
The MCP server exposes two tools: extract_content and summarize_content. Both return plain text.
For detailed setup, see the MCP documentation.
Content Core ships an Agent Skill that teaches AI agents how to use it for extracting content from external sources. This repository is also a plugin marketplace, so the skill installs natively in both harnesses.
Claude Code — add the marketplace and install the plugin:
Codex — the repository carries a Codex plugin manifest (.codex-plugin/plugin.json) and marketplace catalog (.agents/plugins/marketplace.json) pointing at the same skill.
Manual fallback — copy the skill file directly into your project:
Once installed, the agent can use content-core to extract content from URLs, documents, and media files — either via CLI (uvx content-core) or MCP if configured.
Content Core uses Esperanto to support multiple LLM and STT providers. Switch providers by changing the config — no code changes needed:
Supported providers include OpenAI, Anthropic, Google, Groq, DeepSeek, Ollama, and more. See the Esperanto documentation for the full list.
Content Core uses ContentCoreConfig powered by pydantic-settings. Settings are resolved in priority order: constructor args > env vars (CCORE_*) > config file (~/.content-core/config.toml) > defaults.
| Variable | Description | Default |
|---|---|---|
CCORE_URL_ENGINE | URL extraction engine (auto, simple, firecrawl, jina, crawl4ai) | auto |
CCORE_DOCUMENT_ENGINE | Document extraction engine (auto, simple, docling) — docling raises ConfigurationError if the extra is not installed; auto falls back silently | auto |
CCORE_AUDIO_CONCURRENCY | Concurrent audio transcriptions (1-10) | 3 |
CRAWL4AI_API_URL | Crawl4AI Docker API URL (omit for local browser mode) | - |
CRAWL4AI_API_TOKEN | Bearer token for the Crawl4AI Docker API (required by Crawl4AI >= 0.9.0) | - |
FIRECRAWL_API_URL | Custom Firecrawl API URL for self-hosted instances or Firecrawl-compatible backends (e.g. fastCRW) | - |
CCORE_FIRECRAWL_PROXY | Firecrawl proxy mode (auto, basic, stealth) | auto |
CCORE_FIRECRAWL_WAIT_FOR | Wait time in ms before extraction | 3000 |
CCORE_LLM_PROVIDER | LLM provider for summarization | - |
CCORE_LLM_MODEL | LLM model for summarization | - |
CCORE_STT_PROVIDER | Speech-to-text provider | - |
CCORE_STT_MODEL | Speech-to-text model | - |
CCORE_STT_TIMEOUT | Speech-to-text timeout in seconds | - |
CCORE_YOUTUBE_LANGUAGES | Preferred YouTube transcript languages | - |
API keys for external services are set via their standard environment variables (e.g., OPENAI_API_KEY, FIRECRAWL_API_KEY, JINA_API_KEY).
Content Core reads standard HTTP_PROXY / HTTPS_PROXY / NO_PROXY environment variables automatically. No additional configuration is needed.
When installed with the langchain extra, Content Core provides LangChain-compatible tool wrappers:
This project is licensed under the MIT License.
Contributions are welcome! Please see our Contributing Guide for details.