office-addin-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@office-addin-mcpsummarize the current workbook in Excel"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
office-addin-mcp
Drive Excel, Word, Outlook, PowerPoint, and OneNote add-ins from any MCP client — through one Go binary that speaks the Model Context Protocol over stdio.
office-addin-mcp attaches to the WebView2 runtime that Office uses to host Office.js add-ins, then exposes a high-level tool surface to LLM clients. Instead of teaching the model how to chain 15 raw Office.js primitives, the server ships one tool call per workflow.
See the latest release · CHANGELOG.md · PLAN-workflow-surface.md.
Highlights
Workflow tools, not primitives.
excel.tabulateRegion,word.applyEdits,outlook.draftReply,powerpoint.rebuildSlideFromOutline,onenote.appendToPage, andexcel.summarizeWorkbookeach compress what used to be 5–20 calls into one Office.js batch (one CDP round-trip).Server-side query DSL.
excel.query/outlook.query/powerpoint.query/onenote.queryrun filter / project / groupBy / agg / limit inside the host so a 100k-row workbook returns a 5-row answer.Persistent document context cache.
*.discovertools snapshot workbook / document / mailbox / deck / notebook structure to%LOCALAPPDATA%\office-addin-mcp\doccache.jsonso repeat discovery calls cost zero CDP round-trips.MCP Resources with live subscriptions. Reference Office state by URI —
office://excel/Book1/Sheet1!A1:D20,office://word/<doc>/bookmark/<name>,office://outlook/inbox,office://pp/<deck>/slide<N>,office://onenote/<notebook>/<section>/<page>— and subscribe tonotifications/resources/updatedwhen contents change.Macro record & replay.
macro.record_start→ run any sequence of tools →macro.record_stopwrites a JSON macro to disk. On next launch the server registers each macro as a callablemacro.<name>tool.Auto-diagnostics on Office.js errors.
ItemNotFound, address parse failures, slide-index errors, and compose-vs-read mismatches are enriched in the failure envelope withavailable_sheets,nearest_name_suggestions,parsed_address,slide_count,item_mode, and arecoveryHint— so the model can self-correct without a second round-trip.Self-healing CDP connection. If Excel closes unexpectedly, the server detects the dead connection on the next tool call, stops the stale sideload registration, relaunches Excel (including the dev server if needed), resets the session pool, and retries the original operation — no agent intervention required. Only activates when the server owns the launch (via
--launch-addinor a prioraddin.launchcall); attaching to an external--browser-urlendpoint is never disturbed.Progress notifications on long operations.
addin.launch,addin.ensureRunning, and macro replay stream MCP$/progressnotifications at each phase boundary (dev-server start, sideload, CDP-ready wait, step execution) so clients can show a live status bar instead of a silent spinner.Cross-host orchestration.
office.embedreads a range from Excel and inserts it onto a PowerPoint slide in one call.Page automation fallback.
page.*/pages.*/inspect.*/interact.*cover screenshot, snapshot, click, fill, type, hover, navigate, evaluate, wait, console log, network log — same primitives against headless Chrome on macOS/Linux.Per-host
runScriptescape hatch.excel.runScript,word.runScript,outlook.runScript,powerpoint.runScript,onenote.runScriptrun arbitrary<Host>.runcallbacks when the workflow surface isn't enough.
Related MCP server: fcp-sheets
Requirements
Requirement | Notes |
Office on Windows 10/11 | Required for all |
Node.js 14+ | For the |
Go 1.22+ | Only needed to build from source |
macOS / Linux | Supported for |
Install
npm (recommended)
npm install -g @dsbissett/office-addin-mcpOr run on demand without installing:
npx @dsbissett/office-addin-mcp@latest --helpPre-built binaries for Windows x64, macOS (Intel + Apple Silicon), and Linux (x64 + ARM64) ship via optional npm dependencies — the correct binary is fetched automatically.
Build from source
go install github.com/dsbissett/office-addin-mcp/cmd/office-addin-mcp@latestUse it in Claude Code
One command registers the server globally:
claude mcp add office-addin-mcp -- npx -y @dsbissett/office-addin-mcp@latestOr add it manually. Project scope (.claude/mcp.json in the repo) or user scope (~/.claude.json → mcpServers) both work:
{
"mcpServers": {
"office-addin-mcp": {
"command": "npx",
"args": ["-y", "@dsbissett/office-addin-mcp@latest"]
}
}
}Then, in any Claude Code session:
Open the Office host (see Office host setup below) so the WebView2 debug port is listening.
Ask Claude to do something — e.g. "Summarize the workbook, then pivot the Sales sheet by region." It will pick
excel.summarizeWorkbookandexcel.queryautomatically.Run
/mcpin Claude Code to inspect the tool list, orclaude mcp listfrom a shell.
Tip: pass
--launch-addinand Claude can sideload the add-in project under the current working directory automatically. No manual env var needed.
Use it in other MCP clients
Workspace config at .vscode/mcp.json:
{
"servers": {
"office-addin-mcp": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@dsbissett/office-addin-mcp@latest"]
}
}
}Or: Command Palette → MCP: Add Server → paste the command.
~/.cursor/mcp.json (global) or .cursor/mcp.json (project):
{
"mcpServers": {
"office-addin-mcp": {
"command": "npx",
"args": ["-y", "@dsbissett/office-addin-mcp@latest"]
}
}
}~/.codex/config.toml:
[mcp_servers.office-addin-mcp]
command = "npx"
args = ["-y", "@dsbissett/office-addin-mcp@latest"]~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"office-addin-mcp": {
"command": "npx",
"args": ["-y", "@dsbissett/office-addin-mcp@latest"]
}
}
}command:
npxargs:
["-y", "@dsbissett/office-addin-mcp@latest"]transport:
stdio
Office host setup
Office hosts only expose their WebView2 runtime to CDP when started with a debug-port env var. The variable is shared across every Office app, so the same setup works for all five:
PowerShell
$env:WEBVIEW2_ADDITIONAL_BROWSER_ARGUMENTS = "--remote-debugging-port=9222"
Start-Process excel.exe my-workbook.xlsx
# or: Start-Process winword.exe my-document.docx
# or: Start-Process outlook.exe
# or: Start-Process powerpnt.exe my-deck.pptx
# or: Start-Process onenote.exeCommand Prompt
set WEBVIEW2_ADDITIONAL_BROWSER_ARGUMENTS=--remote-debugging-port=9222
excel.exe my-workbook.xlsxThe server probes http://127.0.0.1:9222 by default. Override with --browser-url or --ws-endpoint. Or skip the setup entirely with --launch-addin — the server will detect the Office add-in project under cwd and sideload it through office-addin-debugging.
Tool surface
Phase 0 of PLAN-workflow-surface.md deleted the raw cdp.* surface; everything below is the workflow-shaped replacement. Each workflow tool is one MCP call → one Office.js batch → one CDP round-trip.
Excel
Tool | Purpose |
| Sheets, tables, named ranges, used-range bounds — single call |
| Load a range, return rows-as-objects + per-column type tags |
| Server-side filter / project / groupBy / agg / limit DSL |
| Persistent workbook fingerprint snapshot (doccache) |
| Batch cell/range patches in one |
| Run an arbitrary |
Word
Tool | Purpose |
| Document structure snapshot |
| Batch find/replace edits in one |
| Run an arbitrary |
Outlook
Tool | Purpose |
| Query the mailbox / current item |
| Mailbox + active-item snapshot |
| Set subject and/or body on a compose-mode item |
| Run an arbitrary callback against |
PowerPoint
Tool | Purpose |
| Slide-level query DSL |
| Deck structure snapshot |
| Rewrite a slide's title and/or body bullets |
| Run an arbitrary |
OneNote
Tool | Purpose |
| Notebook / section / page query DSL |
| Notebook structure snapshot |
| Append HTML and/or bullets to a page |
| Run an arbitrary |
Cross-host & macros
Tool | Purpose |
| Read an Excel range and insert it on a PowerPoint slide |
| Begin capturing subsequent tool calls into a named macro |
| Finalize and persist the macro to disk |
| Replay a persisted macro (auto-registered on next startup) |
Add-in lifecycle & generic page automation
Tool group | Purpose |
|
|
|
|
|
|
| DOM / accessibility inspection and higher-level interaction primitives |
MCP Resources
LLM clients can reference Office state by URI instead of re-fetching it every turn. Five resource templates are registered on startup:
URI template | Backed by |
|
|
|
|
|
|
|
|
|
|
Resources support resources/subscribe. The server polls fingerprints every 30s and emits notifications/resources/updated when content changes; resources/unsubscribe (or client disconnect) tears down the polling goroutine.
Performance notes
urlPatternselects the WebView2 page by substring match against the target URL. After the first call against a session, the selector cache dropsdiagnostics.cdpRoundTripsfrom ~3 to 1 on subsequent calls.The session pool allows 3 reconnects per 60-second window. Exhaustion surfaces as
connection/session_acquire_failed. If the server owns the launch, it attempts one automatic stop+relaunch cycle before surfacing that error, so transient Excel restarts are transparent to the agent.DocCache snapshots are atomic-rename writes, mode 0600. Disable with
--no-doccache.
Flags & environment variables
Flag | Env | Default | Description |
| — |
| WebView2 / Chrome debug endpoint |
| — | — | Direct browser WebSocket URL (overrides |
| — | stderr | Append diagnostics to a file instead of stderr |
| — |
| slog level: |
| — | off | Auto-detect and sideload the Office add-in project under cwd at startup, only if no CDP endpoint is reachable |
| — | off | Deprecated alias for |
| — | off | Disable the persistent document discovery cache ( |
|
| off | Enable crash/terminate CDP methods |
| — | — | Print binary version and exit |
The binary takes no positional subcommands — it speaks MCP over stdio. The legacy call / daemon / serve --stdio subcommands have been removed.
Layout
cmd/office-addin-mcp/ main entry
internal/tools/ registry, dispatcher, envelope, diagnostics
internal/cdp/ hand-rolled CDP WebSocket client
internal/webview2/ endpoint discovery
internal/session/ session pool + reconnect budget
internal/officejs/ Office.js executor + payloads
internal/js/ embedded Office.js scripts
internal/doccache/ persistent document discovery cache
internal/resources/ office:// URI parsing + provider + polling watcher
internal/recorder/ macro recorder store
internal/tools/macrotool/ macro.record_start / record_stop / replay
internal/mcp/ SDK server wiring + resource registrationLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dsbissett/office-addin-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server