Universal AI Converter
FreeNot checkedConverts documents, images, audio, and video into Markdown or structured JSON. Compatible with MCP-compatible AI agents as a stdio server providing a convert_fi
About
Converts documents, images, audio, and video into Markdown or structured JSON. Compatible with MCP-compatible AI agents as a stdio server providing a convert_file tool.
README
Convert documents, images, audio, and video into Markdown or structured JSON. The core is agent-agnostic: use it from a terminal, Python, an HTTP API, an MCP-compatible AI agent, Docker, or your own application.
One-command Codex installation
The installer creates an isolated environment, installs all conversion features, installs the Codex plugin, and enables automatic file routing.
Windows PowerShell:
irm https://raw.githubusercontent.com/KOLRNCH/Universal-AI-Converter/main/install.ps1 | iex
macOS or Linux:
curl -fsSL https://raw.githubusercontent.com/KOLRNCH/Universal-AI-Converter/main/install.sh | sh
Requirements: Python 3.10+ and Codex. Restart Codex and open a new task after installation. Attach a file and ask a normal question; the plugin selects the converter automatically.
FFmpeg and Tesseract are system programs. The Python features are installed automatically, while the installer reports any missing system executable when that format is first used.
Why it is portable
- No dependency on Codex, ChatGPT, Claude, or a specific LLM.
- A stable Python API and command-line interface form the core.
- MCP is an optional adapter for compatible agents.
- HTTP is an optional adapter for everything else.
- Heavy document, OCR, and speech dependencies are installed only when needed.
Install
Python 3.10 or newer is required.
pip install universal-ai-converter
pip install "universal-ai-converter[documents]"
pip install "universal-ai-converter[ocr]"
pip install "universal-ai-converter[media]"
pip install "universal-ai-converter[all]"
Until the first PyPI release, install directly from GitHub:
pip install "universal-ai-converter[all] @ git+https://github.com/KOLRNCH/Universal-AI-Converter.git"
OCR additionally requires the Tesseract executable. Video additionally requires FFmpeg. Both must be available in PATH.
For development from this repository:
python -m venv .venv
pip install -e ".[dev]"
pytest
Command line
uac convert report.pdf -o report.md
uac convert interview.mp4 -o transcript.md --whisper-model small
uac convert scan.png --format json -o result.json
Python
from universal_ai_converter import Converter
result = Converter().convert("report.pdf")
print(result.text)
HTTP API
pip install "universal-ai-converter[api,documents]"
uac serve --host 127.0.0.1 --port 8765
curl -F "[email protected]" http://127.0.0.1:8765/convert
Any MCP-compatible agent
pip install "universal-ai-converter[mcp,documents]"
uac-mcp
Register uac-mcp as a stdio MCP server in the agent's configuration. The agent receives a convert_file tool. Exact configuration differs between clients, so examples for popular agents will live in docs/integrations/.
See the generic MCP setup for a reusable configuration example.
Docker
docker build -t universal-ai-converter .
docker run --rm -p 127.0.0.1:8765:8765 universal-ai-converter
Then upload a file to http://127.0.0.1:8765/convert. Model files downloaded by faster-whisper should be mounted in a persistent cache for repeated media conversions.
Format routing
| Input | Backend |
|---|---|
| PDF, DOCX, PPTX, XLSX, HTML, EPUB, ZIP, MSG | MarkItDown |
| PNG, JPEG, TIFF, WebP | Tesseract OCR |
| MP3, WAV, M4A, FLAC, OGG | faster-whisper |
| MP4, MKV, MOV, WebM, AVI | FFmpeg + faster-whisper |
| TXT, Markdown, CSV, JSON, XML, YAML | Built-in text reader |
Security
The HTTP server binds to localhost by default. Conversion libraries process untrusted files, so public deployments should run in an isolated container with file-size, time, CPU, and memory limits. Do not expose the development server directly to the internet.
Roadmap
- Plugin entry points for third-party converters
- Recursive archives and batch conversion
- URL and YouTube adapters
- Docker image and cross-platform desktop app
- Configurable OCR languages and timestamped transcripts
- Sandboxed production worker
License
MIT
Install Universal AI Converter in Claude Desktop, Claude Code & Cursor
unyly install universal-ai-converterInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add universal-ai-converter -- uvx --from git+https://github.com/KOLRNCH/Universal-AI-Converter universal-ai-converterFAQ
Is Universal AI Converter MCP free?
Yes, Universal AI Converter MCP is free — one-click install via Unyly at no cost.
Does Universal AI Converter need an API key?
No, Universal AI Converter runs without API keys or environment variables.
Is Universal AI Converter hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Universal AI Converter in Claude Desktop, Claude Code or Cursor?
Open Universal AI Converter on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Omni Video
An MCP server that transforms LLM-enabled IDEs into professional video editors by pre-processing footage into text proxies, generating motion graphics via HTML/
by buildwithtazaARA
Generate images, video and audio from any AI agent — one connector.
by ARAYouTube
Transcripts, channel stats, search
by YouTubeEverArt
AI image generation using various models.
by modelcontextprotocolCompare Universal AI Converter with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All media MCPs
