Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Universal AI Converter

БесплатноНе проверен

Converts documents, images, audio, and video into Markdown or structured JSON. Compatible with MCP-compatible AI agents as a stdio server providing a convert_fi

GitHubEmbed

Описание

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

from github.com/KOLRNCH/Universal-AI-Converter

Установка Universal AI Converter

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/KOLRNCH/Universal-AI-Converter

FAQ

Universal AI Converter MCP бесплатный?

Да, Universal AI Converter MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Universal AI Converter?

Нет, Universal AI Converter работает без API-ключей и переменных окружения.

Universal AI Converter — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить Universal AI Converter в Claude Desktop, Claude Code или Cursor?

Открой Universal AI Converter на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Universal AI Converter with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории media