From Office Documents
Local MCP server for converting documents and images (Word↔PDF, PDF→Word, Excel→CSV, HTML/Markdown→PDF, PNG↔JPG↔WebP, etc.) without an API key. All processing is done offline, preserving privacy.
How this skill is triggered — by the user, by Claude, or both
Slash command
/office-docs:file-converterThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Локальный MCP сервер для конвертации файлов. **Без API ключа!**
Локальный MCP сервер для конвертации файлов. Без API ключа!
Уже добавлен в mcp.json:
{
"file-converter": {
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"git+https://github.com/<author>/file-converter-mcp",
"file-converter-mcp"
]
}
}
pip install mcp docx2pdf pdf2docx pillow pandas pdfkit markdown
| Из | В | Tool |
|---|---|---|
| Word (.docx) | docx_to_pdf | |
| Word (.docx) | pdf_to_docx | |
| Excel (.xlsx) | CSV | excel_to_csv |
| HTML | html_to_pdf | |
| Markdown | markdown_to_pdf |
| Из | В | Tool |
|---|---|---|
| PNG | JPG, WebP, etc. | convert_image |
| JPG | PNG, WebP, etc. | convert_image |
| WebP | PNG, JPG, etc. | convert_image |
| Любой формат | Любой формат | convert_image |
После установки доступны:
| Tool | Описание |
|---|---|
docx_to_pdf | Word → PDF |
pdf_to_docx | PDF → Word |
excel_to_csv | Excel → CSV |
html_to_pdf | HTML → PDF |
markdown_to_pdf | Markdown → PDF |
convert_image | Конвертация изображений |
# Конвертировать Word в PDF
Конвертируй document.docx в PDF
# Конвертировать PDF в Word
Преобразуй report.pdf в редактируемый Word документ
# Конвертировать изображение
Конвертируй image.png в WebP формат
# Excel в CSV
Преобразуй data.xlsx в CSV
| Feature | file-converter-mcp | PDF.co |
|---|---|---|
| API Key | Не нужен | Нужен |
| Стоимость | Бесплатно | Платно |
| Offline | Да | Нет |
| Приватность | Локально | Cloud |
| Скорость | Быстро | Зависит от сети |
| Задача | Используй |
|---|---|
| Word ↔ PDF | file-converter |
| Image conversion | file-converter |
| Excel → CSV | file-converter |
| HTML/MD → PDF | file-converter |
| PDF → JSON/Text (OCR) | markitdown MCP |
markitdown для извлечения текста из PDFGitHub: /file-converter-mcp
npx claudepluginhub jhamidun/claude-code-config-pack --plugin office-docsBuilds a throwaway prototype to answer a design question about UI appearance or state/logic behavior. Guides you through two branches: interactive terminal app for logic validation, or multiple UI variations for visual exploration.