Document MCP server that enables Claude Desktop to perform operations on Microsoft Word, Excel, and PDF files. Built with FastMCP and Python, it provides tools for creating and editing documents, converting between formats, and handling spreadsheet data. Particularly valuable for users who need to automate document workflows or manipulate files through natural language requests without switching between applications.
아직 리뷰가 없습니다. 첫 번째 리뷰를 작성해 보세요!
대화에 참여하려면 로그인하세요
Create a new Word document. Parameters: filepath (string), content (string)
Edit an existing Word document. Parameters: filepath (string), operations (List[Dict])
Convert a text file to a Word document. Parameters: source_path (string), target_path (string)
Create a new Excel file from JSON or CSV-like text. Parameters: filepath (string), content (string)
Edit an existing Excel file. Parameters: filepath (string), operations (List[Dict])
Convert a CSV file to an Excel file. Parameters: source_path (string), target_path (string)
Create a new PDF file from text. Parameters: filepath (string), content (string)
Convert a Word document to a PDF file. Parameters: source_path (string), target_path (string)