file-converter-mcp

A MCP server that provides file conversion tools

GitHub Stars

16

User Rating

Not Rated

Favorites

0

Views

66

Forks

8

Issues

2

Installation
Difficulty
Advanced
Estimated Time
20-45 minutes

Installation

1Clone the Repository
bash
   git clone https://github.com/wowyuarm/file-converter-mcp.git
   cd file-converter-mcp
   
2Create a Virtual Environment (optional but recommended)
bash
   python -m venv venv
   source venv/bin/activate      # On Unix-based systems
   venv\Scripts\activate         # On Windows
   
3Install Dependencies
Install the required packages using pip:
bash
   pip install mcp docx2pdf pdf2docx pillow pandas pdfkit markdown
   
Alternatively, if you are using [uv](https://docs.astral.sh/uv/):
bash
   uv add "mcp[cli]" docx2pdf pdf2docx pillow pandas pdfkit markdown
   

Additional Resources