word-mcp-server AGENTS.md

word-mcp-server AGENTS.md is an instructions file for Codex, OpenCode from HelloWorld-Open/word-mcp-server. It costs 597 tokens per session, scanned A, original, MIT.

Project instructions for a Windows-only server that lets coding agents work with Microsoft Word through the Model Context Protocol, a standard way for AI tools to call external programs.

In plain words
What is it for?
Use it when developing the Word server, checking its architecture, or configuring an MCP client to start it.
Why use it?
It gives developers the commands, entry points, platform requirements, and design rules needed to build and test the server without guessing.

Instructions file for CodexOpenCode

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/helloworld-open/word-mcp-server/agents-md
Clone the repo
git clone --depth 1 https://github.com/HelloWorld-Open/word-mcp-server

Made for: Codex, OpenCode.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for word-mcp-server AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/helloworld-open/word-mcp-server/agents-md.svg)](https://agentmods.dev/instructions/helloworld-open/word-mcp-server/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/helloworld-open/word-mcp-server/agents-md"><img src="https://agentmods.dev/badge/instructions/helloworld-open/word-mcp-server/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 597 This file is loaded in full into every session.
When invoked 597 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00597 $0.00597
Opus 5 $0.00298 $0.00298
Sonnet 5 $0.00119 $0.00119
Haiku 4.5 $0.00060 $0.00060

Measured 4d ago against content hash 9b4c2968f7d4, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

word-mcp-server AGENTS.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

AGENTS.md · 45 lines

How it starts

The opening of the file, as written. The whole thing — 45 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Word MCP Server — 开发者速查

Build & test

npm run build       # tsc, output to build/
npm test            # vitest run --exclude 'tests/integration/**' (skips smoke tests, needs Word)
npm run dev         # tsc --watch
npx tsc --noEmit    # typecheck-only (no linter configured)

Architecture constraints (enforced by tests/arch/arch.test.ts)

  • src/word/ must NOT import from src/server/
  • src/server/ must NOT access .raw on COM proxy objects

Entry points

  • build/parent.js — watchdog process, spawns/restarts build/child.js
  • build/child.js — MCP server, creates WordSession + wires all tools
  • MCP client config: { "command": "node", "args": ["path/to/build/parent.js"] }

Platform

  • Windows-only ("os": ["win32"], "cpu": ["x64"])
  • Requires MSVC Build Tools (winax native addon), Word installed

COM proxy layers

  • word/com-proxy/: DocumentProxy, SelectionProxy, RangeProxy — typed COM wrappers
  • SectionProxy + HeaderFooterProxy + FieldProxy — section/header/footer operations
  • CollectionProxy<T> with itemFactory — generic COM collection wrapper

All proxy methods wrap COM calls with try-catch + safe defaults. No bare COM access in business logic (arch test enforces this).

Key patterns

  • Content writing: always streaming. word_stream_start({baseStyleProfile:{...}}) → word_stream_block(×N) → word_stream_end().
  • Tool registration: createRegToolmcpCall middleware: rate limit → precheck → ensureReady → timeout → handler → audit → circuit breaker → recovery.
  • Cursor: ContextSanitizer ensures cursor in main body before edits. After header/footer/page-number/watermark ops, cursor auto-restored.
  • Anti-patterns in src/index.ts:68-98 (set font before typing, find+goTo, undo after save, word_open vs word_document).

Mocks

  • word/com-proxy/com-proxy.mock.ts: MockDocumentProxy, MockSelectionProxy, MockRangeProxy, mockSectionProxy, mockHeaderFooterProxy.
  • tests/unit/test-helpers.ts: createMockDoc, createMockSel, createMockSession.
  • tests/arch/ uses ts-morph (devDep) for AST-level constraint checks.

Read the full file on GitHub · 45 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 45 lines · 597 tokens per session scan A 9b4c2968f7d4

Subscribe to this mod's changes

word-mcp-server AGENTS.md is an instructions file published in the GitHub repository HelloWorld-Open/word-mcp-server (3 stars, last pushed 2mo ago), licensed MIT. It adds 597 tokens to every session, about $0.0030 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other instructions, from other repositories

mcp-server-powerpoint copilot-instructions.md

Copilot instructions for sbroenne/mcp-server-powerpoint, covering project instructions — powerpointmcp, critical files (read these first), sister projects, what is powerpointmcp? and session model (mcp server).

sbroenne/mcp-server-powerpoint · 3,630 tokens

mcp-server-powerpoint architecture-patterns.instructions.md

Instructions for sbroenne/mcp-server-powerpoint, covering architecture patterns, .net class design (mandatory), layered architecture (critical), command pattern and structure (per domain).

sbroenne/mcp-server-powerpoint · 1,597 tokens

mcp-server-powerpoint critical-rules.instructions.md

Instructions for sbroenne/mcp-server-powerpoint, covering critical rules - must follow, rule 1: success/errormessage invariant, rule 1b: no exception suppression in core, rule 30: real-com integration tests only, strict tdd and rule: 1-based indexing everywhere.

sbroenne/mcp-server-powerpoint · 1,486 tokens

mcp-server-powerpoint mcp-server-guide.instructions.md

Instructions for sbroenne/mcp-server-powerpoint, covering mcp server development guide, llm-facing content rules, two kinds of tools: hand-written vs. generated, implementation pattern: single hand-written dispatch tool and error handling (mandatory).

sbroenne/mcp-server-powerpoint · 1,737 tokens

mcp-server-powerpoint testing-strategy.instructions.md

Instructions for sbroenne/mcp-server-powerpoint, covering testing strategy, strict tdd (red → green), test project layout, serialization is mandatory and trait tagging (required for surgical filtering).

sbroenne/mcp-server-powerpoint · 1,409 tokens

mcp-server-powerpoint code-review.instructions.md

Instructions for sbroenne/mcp-server-powerpoint, covering copilot code review, interop and resource safety, contract and path completeness and protocol, tests, and user-facing surfaces.

sbroenne/mcp-server-powerpoint · 558 tokens