基于MCP(Model Context Protocol)的Office文档处理助手,支持在MCP Client中创建和编辑Word、Excel、Powerpoint文档。
{
"mcpServers": {
"office-assistant": {
"env": {},
"args": [
"/path/to/office_server.py"
],
"command": "python"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
基于MCP(Model Context Protocol)的Office文档处理助手,支持在MCP Client中创建和编辑Word、Excel、Powerpoint文档。
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 357 days ago. 85 stars.
Will it work with my client?
Transport: stdio, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
Context cost
27 tools. ~2,500 tokens (1.3% of 200K). Consider loading selectively.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
create_documentCreate a new Word document with optional metadata
get_document_infoGet information and properties of a Word document
get_document_textExtract text content from a Word document
get_document_outlineAnalyze and get the structure/outline of a Word document
list_available_documentsList available documents in a directory
copy_documentCreate a copy of a Word document
add_headingAdd a heading to a Word document
add_paragraphAdd a paragraph to a Word document
add_tableCreate a table in a Word document
add_pictureInsert an image into a Word document
This server is missing a description.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Office Editor Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server for Office document processing, enabling creation and editing of Word, Excel, and PowerPoint documents within MCP Clients without leaving the AI assistant environment.
Office-Editor-MCP implements the Model Context Protocol standard to expose Office document operations as tools and resources. It serves as a bridge between AI assistants and Microsoft Office documents, allowing you to create, edit, format, and analyze various Office documents through AI assistants.
# Clone the repository
git clone https://github.com/theWDY/office-editor-mcp.git
cd office-editor-mcp
# Install dependencies
pip install -r requirements.txt
Office Assistant (modify as preferred)stdiopython /path/to/office_server.py
Note: Replace with your actual file path.cursor folder in the project directory (if it doesn't exist)mcp.json file in that folder with the following content:{
"mcpServers": {
"office-assistant": {
"command": "python",
"args": ["/path/to/office_server.py"],
"env": {}
}
}
}
Edit the Claude configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd the following configuration:
{
"mcpServers": {
"office-document-server": {
"command": "python",
"args": [
"/path/to/off
... [View full README on GitHub](https://github.com/theWDY/office-editor-mcp#readme)