A lightweight MCP server for processing, editing, and interacting with PDF, Word, Excel, and CSV documents.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"document-edit-mcp": {
"args": [
"-y",
"@alejandroBallesterosC/document-edit-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that allows Claude Desktop to perform document operations on Microsoft Word, Excel, and PDF files.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@alejandroBallesterosC/document-edit-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @alejandroBallesterosC/document-edit-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
Official Notion MCP Server
MCP Security Weekly
Get CVE alerts and security updates for Document Edit Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that allows Claude Desktop to perform document operations on Microsoft Word, Excel, and PDF files.
This MCP server requires Python 3.10 or higher.
To install Claude Document MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @alejandroBallesterosC/document-edit-mcp --client claude
Run the setup script to automatically install dependencies and configure for Claude Desktop:
git clone https://github.com/alejandroBallesterosC/document-edit-mcp
cd document-edit-mcp
./setup.sh
This will:
If you prefer to set up manually:
cd claude-document-mcp
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install -e .
Copy the claude_desktop_config.json file to:
~/Library/Application Support/Claude/%APPDATA%\Claude\This server follows the Model Context Protocol specification to provide document manipulation capabilities for Claude Desktop:
create_word_document(filepath: str, content: str) -> Dict
edit_word_document(filepath: str, operations: List[Dict]) -> Dict
convert_txt_to_word(source_path: str, target_path: str) -> Dict
create_excel_file(filepath: str, content: str) -> Dict
edit_excel_file(filepath: str, operations: List[Dict]) -> Dict
convert_csv_to_excel(source_path: str, target_path: str) -> Dict
create_pdf_file(filepath: str, content: str) -> Dict
convert_word_to_pdf(source_path: str, target_path: str) -> Dict
The server logs all operations to both the console and a logs/document_mcp.log file for troubleshooting.
MIT
Contributions are welcome! Please feel free to submit a Pull Request.