Doc Tools MCP MCP Server

# Word Tools MCP Server A Model Context Protocol (MCP) server that provides AI-powered Word document manipulation capabilities. This server

Local serverstdio

What is the Doc Tools MCP MCP server?

If you already use Doc Tools MCP, the doc tools mcp mcp server is the piece that lets your assistant work with it directly. # Word Tools MCP Server A Model Context Protocol (MCP) server that provides AI-powered Word document manipulation capabilities. This server implements the MCP protocol to enable AI applications to create, edit, and manage Word documents.

What the server does

  • Full MCP protocol implementation
  • Word document creation and management
  • Rich text content manipulation
  • Table creation and formatting
  • Document layout control
  • Document metadata management

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • create_document — Create a new Word document
  • Parameters — filePath (required), title, author
  • open_document — Open an existing Word document
  • add_paragraph — Add a paragraph to the document
  • add_table — Add a table to the document
  • search_and_replace — Find and replace text in the document
  • set_page_margins — Set document page margins
  • get_document_info — Get document metadata
  • Cursor — 1. Open the Cursor configuration file ~/.cursor/mcp.json 2. Add the following configuration: json { "mcpServers": { "doc-tools-mcp": { "command"

Installation

Installation goes through your MCP client rather than a global install: point it at @puchunjie/doc-tools-mcp on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Credentials and setup notes

  • Node.js 14 or higher - Microsoft Word (optional, for advanced features)

Where it fits

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Doc Tools MCP's toolset — create_document, Parameters, open_document and 6 more — is a fair guide to whether it matches your workflow. It is maintained by puchunjie; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Doc Tools MCP.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
create_documentCreate a new Word document
ParametersfilePath (required), title, author
open_documentOpen an existing Word document
add_paragraphAdd a paragraph to the document
add_tableAdd a table to the document
search_and_replaceFind and replace text in the document
set_page_marginsSet document page margins
get_document_infoGet document metadata
Cursor1. Open the Cursor configuration file ~/.cursor/mcp.json 2. Add the following configuration: json { "mcpServers": { "doc-tools-mcp": { "command": "npx", "args": [ "@puchunjie/doc-tools-mcp" ] } } }

How to install the Doc Tools MCP MCP server

Or for local development version:
```json
{
  "mcpServers": {
    "doc-tools-mcp": {
      "command": "node",
      "args": [
        "/path/to/your/doc-tools-mcp/dist/mcp-server.js"
      ]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js 14 or higher - Microsoft Word (optional, for advanced features)

Example prompts to try

  • Use Doc Tools MCP to create document.
  • Use Doc Tools MCP to Parameters.
  • Use Doc Tools MCP to open document.

Frequently asked questions

Node.js 14 or higher is required. Microsoft Word is optional and only needed for advanced features.