Universal AI Converter
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Universal AI ConverterConvert report.pdf to markdown."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Universal AI Converter
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 | iexmacOS or Linux:
curl -fsSL https://raw.githubusercontent.com/KOLRNCH/Universal-AI-Converter/main/install.sh | shRequirements: 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.
Related MCP server: ConvertAgent
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]"
pytestCommand 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.jsonPython
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 "file=@report.pdf" http://127.0.0.1:8765/convertAny MCP-compatible agent
pip install "universal-ai-converter[mcp,documents]"
uac-mcpRegister 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-converterThen 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
This server cannot be deployed
Maintenance
Related MCP Connectors
Document-to-Markdown MCP server — convert PDF, Office and HTML into LLM-ready Markdown.
Convert files, URLs, and documents to clean, AI-ready Markdown via MCP.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Convert PDF, Word, PowerPoint, Excel, HTML and EPUB to Markdown, with OCR and RAG chunking
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceConverts YouTube videos, audio, documents, and web pages to clean markdown with YAML frontmatter, providing AI assistants with structured content via the MCP protocol.4MIT
- AlicenseNot gradedqualityCmaintenanceFile conversion built for AI agents. CLI, REST API, and MCP server — all sharing one engine.2 npm1MIT
- FlicenseAqualityDmaintenanceConverts files (PDF, DOCX, PPTX, XLSX, images via OCR) and URLs to Markdown, enabling AI clients to read them via a single MCP tool.1-
- AlicenseAqualityBmaintenanceLocal MCP server that converts PDF, Word, PowerPoint, Excel and more to Markdown on your machine, enabling coding agents like Claude Code and Cursor to read office files in the repo.325 npmMIT