Document Operations (Word, Excel, PDF)
D

Document Operations (Word, Excel, PDF)

An MCP server that provides document operation functions for Claude Desktop, supporting the creation, editing, and conversion of Word, Excel, and PDF files.
2.5 points
13.7K

Installation

Copy the following command to your Client for configuration
Note: Your key is sensitive information, do not share it with anyone.

๐Ÿš€ Document Editing MCP Server for Claude Desktop

A Model Context Protocol (MCP) server that allows Claude Desktop to perform document operations on Microsoft Word, Excel, and PDF files.

๐Ÿš€ Quick Start

This MCP server is designed to enable Claude Desktop to execute a variety of document - related operations on Microsoft Word, Excel, and PDF files. It offers a seamless way to work with these popular document formats within the Claude Desktop environment.

โœจ Features

Microsoft Word Operations

  • Create new Word documents using text.
  • Edit existing Word documents (add/modify/delete paragraphs and headings).
  • Convert text files (.txt) to Word documents.

Excel Operations

  • Create new Excel spreadsheets from text in JSON or CSV format.
  • Edit existing Excel files (update cells, ranges, add/delete rows, columns, worksheets).
  • Convert CSV files to Excel.

PDF Operations

  • Create new PDF files using text.
  • Convert Word documents to PDF files.

๐Ÿ“ฆ Installation

This MCP server requires Python 3.10 or higher.

Automatic Installation (Recommended)

Run the setup script to automatically install dependencies and configure Claude Desktop:

git clone https://github.com/alejandroBallesterosC/document-edit-mcp
cd document-edit-mcp
./setup.sh

This will:

  1. Create a virtual environment.
  2. Install the required dependencies.
  3. Configure the server for use with Claude Desktop.
  4. Create the necessary directories.

Manual Installation (if needed)

If you prefer manual installation:

  1. Install the dependencies:
cd claude-document-mcp
python -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
pip install -e .
  1. Configure Claude Desktop:

Copy the claude_desktop_config.json file to:

  • Mac: ~/Library/Application Support/Claude/
  • Windows: %APPDATA%\Claude\
  1. Restart Claude Desktop

๐Ÿ“š Documentation

Model Context Protocol Integration

This server adheres to the Model Context Protocol specification to provide document - processing capabilities to Claude Desktop:

  • Tools: Provides manipulation functions for Word, Excel, and PDF operations.
  • Resources: Provides information about the features.
  • Prompts: (Not implemented yet)

๐Ÿ’ป Usage Examples

Microsoft Word

Basic Usage

# Create a Word document
from your_module import create_word_document
filepath = 'new_doc.docx'
content = 'This is the content of the new Word document.'
result = create_word_document(filepath, content)

Advanced Usage

# Edit an existing Word document
from your_module import edit_word_document
filepath = 'existing_doc.docx'
operations = [{"type": "add_paragraph", "content": "This is a new paragraph."}]
result = edit_word_document(filepath, operations)

Excel

Basic Usage

# Create an Excel file
from your_module import create_excel_file
filepath = 'new_excel.xlsx'
content = 'col1,col2\nval1,val2'
result = create_excel_file(filepath, content)

Advanced Usage

# Edit an existing Excel file
from your_module import edit_excel_file
filepath = 'existing_excel.xlsx'
operations = [{"type": "update_cell", "cell": "A1", "value": "New Value"}]
result = edit_excel_file(filepath, operations)

PDF

Basic Usage

# Create a PDF file
from your_module import create_pdf_file
filepath = 'new_pdf.pdf'
content = 'This is the content of the new PDF file.'
result = create_pdf_file(filepath, content)

Advanced Usage

# Convert a Word document to a PDF
from your_module import convert_word_to_pdf
source_path = 'source_doc.docx'
target_path = 'target_pdf.pdf'
result = convert_word_to_pdf(source_path, target_path)

๐Ÿ“„ API Reference

Microsoft Word

Create a Word Document

create_word_document(filepath: str, content: str) -> Dict

Edit a Word Document

edit_word_document(filepath: str, operations: List[Dict]) -> Dict

Convert TXT to Word

convert_txt_to_word(source_path: str, target_path: str) -> Dict

Excel

Create an Excel File

create_excel_file(filepath: str, content: str) -> Dict

Edit an Excel File

edit_excel_file(filepath: str, operations: List[Dict]) -> Dict

Convert CSV to Excel

convert_csv_to_excel(source_path: str, target_path: str) -> Dict

PDF

Create a PDF File

create_pdf_file(filepath: str, content: str) -> Dict

Convert Word to PDF

convert_word_to_pdf(source_path: str, target_path: str) -> Dict

๐Ÿ”ง Technical Details

The server logs all operations both to the console and to the logs/document_mcp.log file for easy troubleshooting.

๐Ÿ“„ License

This project is licensed under the MIT license.

๐Ÿค Contribution

Any contributions are welcome! Please feel free to submit a Pull Request.

Alternatives

V
Vestige
Vestige is an AI memory engine based on cognitive science. By implementing 29 neuroscience modules such as prediction error gating, FSRS - 6 spaced repetition, and memory dreaming, it provides long - term memory capabilities for AI. It includes a 3D visualization dashboard and 21 MCP tools, runs completely locally, and does not require the cloud.
Rust
5.9K
4.5 points
M
Moltbrain
MoltBrain is a long-term memory layer plugin designed for OpenClaw, MoltBook, and Claude Code, capable of automatically learning and recalling project context, providing intelligent search, observation recording, analysis statistics, and persistent storage functions.
TypeScript
6.9K
4.5 points
B
Bm.md
A feature-rich Markdown typesetting tool that supports multiple style themes and platform adaptation, providing real-time editing preview, image export, and API integration capabilities
TypeScript
5.1K
5 points
S
Security Detections MCP
Security Detections MCP is a server based on the Model Context Protocol that allows LLMs to query a unified security detection rule database covering Sigma, Splunk ESCU, Elastic, and KQL formats. The latest version 3.0 is upgraded to an autonomous detection engineering platform that can automatically extract TTPs from threat intelligence, analyze coverage gaps, generate SIEM-native format detection rules, run tests, and verify. The project includes over 71 tools, 11 pre-built workflow prompts, and a knowledge graph system, supporting multiple SIEM platforms.
TypeScript
5.8K
4 points
P
Paperbanana
Python
8.2K
5 points
B
Better Icons
An MCP server and CLI tool that provides search and retrieval of over 200,000 icons, supports more than 150 icon libraries, and helps AI assistants and developers quickly obtain and use icons.
TypeScript
7.4K
4.5 points
A
Assistant Ui
assistant - ui is an open - source TypeScript/React library for quickly building production - grade AI chat interfaces, providing composable UI components, streaming responses, accessibility, etc., and supporting multiple AI backends and models.
TypeScript
7.9K
5 points
A
Apify MCP Server
The Apify MCP Server is a tool based on the Model Context Protocol (MCP) that allows AI assistants to extract data from websites such as social media, search engines, and e-commerce through thousands of ready-to-use crawlers, scrapers, and automation tools (Apify Actors). It supports OAuth and Skyfire proxy payment and can be integrated into MCP clients such as Claude and VS Code through HTTPS endpoints or local stdio.
TypeScript
8.1K
5 points
G
Gitlab MCP Server
Certified
The GitLab MCP server is a project based on the Model Context Protocol that provides a comprehensive toolset for interacting with GitLab accounts, including code review, merge request management, CI/CD configuration, and other functions.
TypeScript
26.5K
4.3 points
M
Markdownify MCP
Markdownify is a multi-functional file conversion service that supports converting multiple formats such as PDFs, images, audio, and web page content into Markdown format.
TypeScript
36.7K
5 points
D
Duckduckgo MCP Server
Certified
The DuckDuckGo Search MCP Server provides web search and content scraping services for LLMs such as Claude.
Python
74.4K
4.3 points
N
Notion Api MCP
Certified
A Python-based MCP Server that provides advanced to-do list management and content organization functions through the Notion API, enabling seamless integration between AI models and Notion.
Python
22.4K
4.5 points
U
Unity
Certified
UnityMCP is a Unity editor plugin that implements the Model Context Protocol (MCP), providing seamless integration between Unity and AI assistants, including real - time state monitoring, remote command execution, and log functions.
C#
32.5K
5 points
F
Figma Context MCP
Framelink Figma MCP Server is a server that provides access to Figma design data for AI programming tools (such as Cursor). By simplifying the Figma API response, it helps AI more accurately achieve one - click conversion from design to code.
TypeScript
65.7K
4.5 points
G
Gmail MCP Server
A Gmail automatic authentication MCP server designed for Claude Desktop, supporting Gmail management through natural language interaction, including complete functions such as sending emails, label management, and batch operations.
TypeScript
21.7K
4.5 points
C
Context7
Context7 MCP is a service that provides real-time, version-specific documentation and code examples for AI programming assistants. It is directly integrated into prompts through the Model Context Protocol to solve the problem of LLMs using outdated information.
TypeScript
99.3K
4.7 points