Local-first MCP servers for Microsoft Office — Excel, PowerPoint, and Word automation via the Model Context Protocol. Runs on Windows.
Project description
MCP Office
Local-first, governed MCP servers for Microsoft Office — built for developers who want to treat Office files the way they treat code.
What is this?
MCP Office is a suite of Model Context Protocol servers that expose Microsoft Office capabilities as governed, deterministic tool calls. Each server runs locally on Windows, connects to your MCP client (Claude Desktop, VS Code Copilot, or any MCP-compatible client), and gives you structured control over Office files — without an in-app AI assistant.
This is not a Copilot replacement. It is a developer-first execution layer for Office automation.
Packages
✅ Available now
| Package | What it does | Install | Tools |
|---|---|---|---|
excelmcp |
Read, write, style, validate, and export Excel workbooks | pip install mcp-office |
65 |
pptmcp |
Build, edit, review, and export PowerPoint presentations. Output Contract framework for machine-verifiable slide specs | pip install mcp-office |
46 |
wordmcp |
Template assembly, tracked-changes support, and structural QA for Word documents | pip install mcp-office |
50 |
🚧 Coming next
| Package | Status |
|---|---|
mailmcp |
In development — Outlook email, calendar, contacts, and MailRepo search |
New packages are added as they complete their proof cycle. See ROADMAP.md.
Quick start
Prerequisites
- Windows 10 or 11
- Python 3.11 or later (
python --version) - Git (
git --version) - Claude Desktop or VS Code with GitHub Copilot
- Microsoft Office (Excel / PowerPoint / Word) — required for COM-backed tools (styling, PDF export, tracked-changes)
Install
PyPI note:
excelmcpon PyPI is an unrelated third-party package. Do notpip install excelmcp— that ships you a stranger's code. The published suite packages aremcp-office-excel(PyPI) and source-editable installs below.pip install excelmcpis never the right command for this project.
# Clone the repo
git clone https://github.com/dosev-ai/mcp-office.git
cd mcp-office
# Create one shared venv for all packages
python -m venv .venv
.venv\Scripts\activate
# Install whichever packages you want (each is independent)
pip install -e ./excelmcp
pip install -e ./wordmcp
# pptmcp depends on the shared library — install both
pip install -e ./shared && pip install -e ./pptmcp
Configure Claude Desktop
Open %APPDATA%\Claude\claude_desktop_config.json (create it if it doesn't exist) and add the servers you installed:
{
"mcpServers": {
"excel-excelmcp": {
"command": "C:\\path\\to\\mcp-office\\.venv\\Scripts\\python.exe",
"args": ["-m", "excelmcp.server"],
"env": {
"EXCEL_ALLOWLIST_ROOTS": "C:\\path\\to\\your\\files",
"EXCEL_ENABLE_WRITE": "true"
}
},
"powerpoint-pptmcp": {
"command": "C:\\path\\to\\mcp-office\\.venv\\Scripts\\python.exe",
"args": ["-m", "pptmcp.server"],
"env": {
"PPT_ALLOWLIST_ROOTS": "C:\\path\\to\\your\\files",
"PPT_ENABLE_WRITE": "true"
}
},
"word-wordmcp": {
"command": "C:\\path\\to\\mcp-office\\.venv\\Scripts\\python.exe",
"args": ["-m", "wordmcp.server"],
"env": {
"WORD_ALLOWLIST_ROOTS": "C:\\path\\to\\your\\files",
"WORD_ENABLE_WRITE": "true"
}
}
}
}
Replace C:\\path\\to\\mcp-office with the absolute path where you cloned the repo, and C:\\path\\to\\your\\files with the directory where your Office files live. Restart Claude Desktop after saving.
Verify
In Claude Desktop, send:
Call capabilities() on excel-excelmcp
Call capabilities() on powerpoint-pptmcp
Call capabilities() on word-wordmcp
Each should return a tool list (60+ for Excel, 48 for PowerPoint, 51 for Word). If a server is missing, check the command path points to your .venv Python executable.
Full per-package guides: excelmcp/README.md · pptmcp/README.md · wordmcp/README.md
Detailed step-by-step: docs/quickstart.md
Requirements
| Requirement | Notes |
|---|---|
| Windows 10 or 11 | COM automation requires Windows |
| Python 3.11+ | python --version to confirm |
| Git | For cloning the repo |
| Microsoft Office | Required for COM-dependent tools (styling, PDF export, tracked-changes). Read-only docx/xlsx/pptx tools work without Office. |
| MCP client | Claude Desktop or VS Code with Copilot |
Architecture
Your MCP client (Claude Desktop / VS Code Copilot / other)
│
│ MCP stdio protocol
↓
MCP Office servers (local Python processes)
├─ excelmcp — Excel automation (live)
├─ pptmcp — PowerPoint automation (live)
├─ wordmcp — Word automation (live)
└─ mailmcp — Outlook + MailRepo (coming)
│
│ COM / openpyxl / python-pptx / python-docx
↓
Microsoft Office (local installation)
Each server is a standalone stdio MCP server. No network calls. No cloud dependency. Your files stay local.
Contributing
This project is in active development. The best way to contribute right now:
- Try any package (excelmcp, pptmcp, wordmcp) and open a First Run Report
- Report bugs via GitHub Issues
- Ask questions or share what you built in GitHub Discussions
See CONTRIBUTING.md for development guidelines.
License
MIT — see LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_office-0.7.0-py3-none-any.whl.
File metadata
- Download URL: mcp_office-0.7.0-py3-none-any.whl
- Upload date:
- Size: 361.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d267627a82d30f8cf4e07e2d35625ba994847e405eef2be581a7750963700579
|
|
| MD5 |
50ec8c2448344abcc6b59a77627fa333
|
|
| BLAKE2b-256 |
1131dc946f711f111f90be09d37aa4dde42fde62c11fefc62d37cc4870e9a443
|