Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Word
W
Health: Not checked yetWe have not completed a health check for this listing yet.No health check has run yet.

Word

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Microsoft Word automation for AI assistants. Requires Word for Windows.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "word": {
      "command": "npx",
      "args": [
        "-y",
        "word"
      ]
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

WordMcp β€” Microsoft Word MCP Server

An MCP server that lets AI assistants drive Microsoft Word for Windows through COM automation: open documents, read and edit text, manage paragraphs and tables, set document properties and export to PDF.

Windows only. A local installation of Microsoft Word is required β€” this server automates the real application, it does not parse .docx files.


Requirements

OSWindows 10/11
Runtime.NET 9 SDK or runtime
OfficeMicrosoft Word 2016 or newer (desktop, not Microsoft Store version)

Installation

VS Code

A thin extension in vscode-extension/ registers the server with VS Code, so there is nothing to configure by hand. It does not bundle the server; it launches it through dnx, which means the server updates without a new extension release.

Build and install it from a checkout:

powershell
cd vscode-extension
npx @vscode/vsce package
code --install-extension word-mcp-0.1.0.vsix

Then run MCP: List Servers from the Command Palette and start Word.

As a .NET tool

powershell
dotnet tool install --global WordMcp.McpServer

The tool is then available as mcp-word.

powershell
mcp-word --version
mcp-word --help

To update or remove it later:

powershell
dotnet tool update --global WordMcp.McpServer
dotnet tool uninstall --global WordMcp.McpServer

To run an unreleased build instead, pack it locally and install from the output folder:

powershell
dotnet pack src\WordMcp.McpServer\WordMcp.McpServer.csproj -c Release -o artifacts
dotnet tool install --global --add-source .\artifacts WordMcp.McpServer

Without installing

The server is listed in the MCP registry as io.github.trsdn/mcp-server-word. Clients that resolve packages themselves can run it through dnx, which fetches the version on demand instead of keeping a global tool around:

config.json
{
  "servers": {
    "word": {
      "type": "stdio",
      "command": "dnx",
      "args": ["WordMcp.McpServer@0.1.0", "--yes"]
    }
  }
}

Client configuration

The server speaks stdio.

VS Code / GitHub Copilot

.vscode/mcp.json:

config.json
{
  "servers": {
    "word": {
      "type": "stdio",
      "command": "mcp-word"
    }
  }
}

Claude Desktop

%APPDATA%\Claude\claude_desktop_config.json:

config.json
{
  "mcpServers": {
    "word": {
      "command": "mcp-word"
    }
  }
}

Copilot CLI

powershell
copilot mcp add word --command mcp-word

Concepts

Every operation runs inside a session. A session owns one Word instance and one open document, identified by a session_id such as word-a1b2c3d4e5f6g.

Code
file(open|create) ──► session_id ──► text / paragraph / table / document ──► file(save) ──► file(close)
  • Paths must be absolute (C:\Users\me\Documents\report.docx).
  • Supported input formats: .docx, .docm, .doc, .dotx, .dotm, .rtf.
  • The document must not be open in Word already β€” WordMcp needs exclusive access.
  • Word runs invisibly in the background and is terminated when the session closes.

The session service

Sessions normally live inside the MCP server process and disappear with it. WordMcp.Service.exe is an optional background daemon that holds them instead, so a session survives a restarted client and can be shared by several of them:

Code
WordMcp.Service.exe --daemon [--idle-minutes 30]   # listen until idle or stopped
WordMcp.Service.exe --status                       # what is it doing?
WordMcp.Service.exe --stop                         # save open documents and exit

Starting it by hand is rarely necessary β€” a client configured to use it starts it on demand. The pipe it listens on embeds your SID and is ACL'd to it, so sessions are never shared between accounts. It exits on its own once no session has been open for the idle timeout.

To use it, set WORDMCP_SERVICE_MODE=daemon for the MCP server. Every tool call then travels to the daemon instead of running in the server's own process. Without it the server keeps sessions to itself, which is what a single client wants: no second process and no startup wait.


Tools

Seventeen tools, each with an action parameter.

file β€” session lifecycle

ActionPurpose
openOpen an existing document and start a session
createCreate a new document at path
saveSave the open document
closeSave (optionally) and close the session
listList all active sessions
testCheck whether Word can be automated on this machine
jsonc
file(action: "open", path: "C:\\Users\\me\\Documents\\report.docx")
// β†’ { "sessionId": "word-a1b2c3d4e5f6g", "fileName": "report.docx", ... }

text β€” content

ActionPurpose
getRead the whole text or a character range (start, end, max_length)
appendAppend text, optionally as a new paragraph
findFind a term; returns positions and surrounding context
replaceReplace occurrences (match_case, match_whole_word, replace_all)
formatApply bold, italic, underline, font_name, font_size, color to a range

Character positions come from get and find and are Word range offsets.

paragraph β€” structure

ActionPurpose
listList paragraphs with index, text, style, alignment and outline level
addAppend a paragraph, optionally with style
insertInsert a paragraph before a given index
deleteDelete a paragraph by index
set-styleApply a style such as Heading 1
set-alignmentleft, center, right or justify

Paragraph indices are 1-based, matching Word.

table β€” tables

ActionPurpose
listList tables with dimensions and style
createCreate a table with rows Γ— columns
readRead all cells of a table as a row/column matrix
set-cellWrite a single cell (row, column, text)
add-rowAppend a row
delete-rowDelete a row
set-styleApply a table style such as Table Grid

document β€” metadata and export

ActionPurpose
get-infoWord, character, paragraph, page, table and section counts
get-propertiesTitle, author, subject, keywords, comments, company
set-propertiesUpdate those built-in properties
export-pdfExport to PDF without touching the open document
save-asSave a copy in another format

image β€” pictures

ActionPurpose
listList inline images with index, size, alt text and link state
insertInsert a picture, optionally with width, height, caption and alt_text
resizeResize by width/height or by scale_percent
replaceSwap the picture behind an index, keeping its size by default
deleteDelete an image by index
set-alt-textSet the alternative text for accessibility

field β€” fields and tables of contents

ActionPurpose
listList all fields with index, type and field code
insert-tocInsert a table of contents (upper_heading_level, lower_heading_level)
update-tocRecalculate every table of contents
update-allUpdate all fields, including those in headers and footers
insert-page-numberAdd a page number to the header or footer

section β€” sections and page setup

ActionPurpose
listList all sections with start type, margins, page size and orientation
addInsert a section break (start_type: next-page, continuous, even-page, odd-page)
page-setupSet margins, orientation and paper_size for one section or the whole document

header-footer β€” headers and footers

ActionPurpose
getRead the header or footer of one section or of all sections
setWrite text, optionally with an alignment
clearEmpty the header or footer

kind selects header or footer, type selects primary, first-page or even-pages.

style β€” styles

ActionPurpose
listList styles; by default only the ones the document uses
createAdd a custom style, optionally based on an existing one
modifyChange font and paragraph formatting of a style
deleteRemove a custom style

style_type selects paragraph, character, table or list. Pass in_use_only: false to list for the full set, which is over 370 entries on a localized Word.

jsonc
style(action: "create", session_id: "...", name: "Callout", base_style: "Normal")
style(action: "modify", session_id: "...", name: "Callout",
      font_size: 11, bold: true, color: "#C00000", space_after: 12)

list β€” bullets and numbering

ActionPurpose
getReport the list formatting of the paragraphs, including the rendered bullet or number
applyFormat a paragraph range as a bullet, number or outline-number list
set-levelSet the list level of a paragraph range (1–9)
restartStart the numbering over at a paragraph
removeStrip the list formatting

Omitting end_index applies the action to start_index alone.

jsonc
list(action: "apply", session_id: "...", start_index: 2, end_index: 5, list_type: "number")
list(action: "set-level", session_id: "...", start_index: 3, end_index: 4, level: 2)
list(action: "restart", session_id: "...", start_index: 6)

comment β€” review notes

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Developer Tools View all alternatives
  • PraisonAI logoPraisonAI

    AI Agents Framework with Self Reflection and MCP support

    πŸ’» Developer Tools1 views
    Compare vs PraisonAI β†’
  • Raycast logoRaycast

    Raycast workflow automation MCP server with 9 tools

    πŸ’» Developer Tools1 views
    Compare vs Raycast β†’
  • Microsoft Learn MCP logoMicrosoft Learn MCP

    Official Microsoft Learn MCP Server – real-time, trusted docs & code samples for AI and LLMs.

    πŸ’» Developer Tools0 views
    Compare vs Microsoft Learn MCP β†’
  • BLEA logoBLEA

    Safe BLE diagnostics, evidence workflows, and guarded automation for AI agents.

    πŸ’» Developer Tools1 views
    Compare vs BLEA β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about Word

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "word": { "command": "npx", "args": ["-y", "Word"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewWord AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/word?style=directory)](https://allmcps.com/mcp/word)
HTML Embed
<a href="https://allmcps.com/mcp/word"><img src="https://allmcps.com/api/badge/word?style=directory" alt="Word on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Last updatedSep 7, 2026
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge and attach your website β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Word β†’Install in Claude DesktopInstall in CursorInstall in VS Code