loading…
Search for a command to run...
loading…
An MCP server that enables text extraction and replacement in Microsoft Word documents by directly automating the Word application on Windows. It supports proce
An MCP server that enables text extraction and replacement in Microsoft Word documents by directly automating the Word application on Windows. It supports processing content across headers, footers, tables, and shapes using the pywin32 library.
このプロジェクトは、Model Context Protocol (MCP) に準拠したWord文書処理サーバーです。
pywin32 ライブラリを使用してMicrosoft Wordアプリケーションを直接操作することで、
Wordファイル(.docx)内のテキストコンテンツの抽出と置換を行います。
python-docx ライブラリは使用していません。
プロジェクトルートディレクトリで、uv を使用して仮想環境を作成し、必要な依存関係をインストールします。
uv venv
# 仮想環境をアクティベート (Windows PowerShellの場合)
.venv\Scripts\Activate.ps1
# 依存関係のインストール
uv pip install mcp pywin32 fastapi uvicorn
pyproject.toml に依存関係が定義されているため、uv pip install の代わりに uv pip sync を使用することもできます。
templates ディレクトリを作成し、テスト用のWordファイル (sample_template.docx) を配置してください。
mkdir templates
例: templates/sample_template.docx
This is a sample Word document.
Here is some text to be replaced: {{OLD_TEXT_1}}
And another one: {{OLD_TEXT_2}}
This is a table:
+-------+-------+
| Header1 | Header2 |
+-------+-------+
| Value1 | Value2 |
+-------+-------+
In the header: Document Title
In the footer: Page Number
プロジェクトのルートディレクトリから main.py を実行することでサーバーを起動できます。
python main.py
サーバーは標準入出力を介してMCPリクエストを待ち受けます。
このMCPサーバーは以下のツールを提供します。
get_word_elements指定されたWordファイルから全てのテキスト要素を取得します。
{
"type": "object",
"properties": {
"file_path": {
"type": "string",
"description": "処理するWordファイルの絶対パス。"
}
},
"required": ["file_path"]
}
{
"name": "get_word_elements",
"arguments": {
"file_path": "C:\\path\\to\\your\\document.docx"
}
}
replace_word_elements指定されたWordファイル内のテキストを指定された内容で置換し、新しいファイルに保存します。
{
"type": "object",
"properties": {
"file_path": {
"type": "string",
"description": "処理するWordファイルの絶対パス。"
},
"output_path": {
"type": "string",
"description": "変更を保存する新しいWordファイルの絶対パス。"
},
"replacements": {
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9_\\s\\S]+$": {
"type": "string"
}
},
"description": "置換するキー(古いテキスト)と値(新しいテキスト)のペアを含む辞書。"
}
},
"required": ["file_path", "output_path", "replacements"]
}
{
"name": "replace_word_elements",
"arguments": {
"file_path": "C:\\path\\to\\your\\templates\\sample_template.docx",
"output_path": "C:\\path\\to\\your\\output\\new_document.docx",
"replacements": {
"{{OLD_TEXT_1}}": "新しいテキスト1",
"{{OLD_TEXT_2}}": "新しいテキスト2",
"Header1": "新しいヘッダー1"
}
}
}
pywin32 を使用しているため、サーバー実行中はバックグラウンドでWordアプリケーションが起動します。output_path には、元の file_path と異なるパスを指定してください。同じパスを指定すると予期せぬ動作を引き起こす可能性があります。Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"mcp-word-processor": {
"command": "npx",
"args": []
}
}
}PRs, issues, code search, CI status
Database, auth and storage
Reference / test server with prompts, resources, and tools.
Secure file operations with configurable access controls.