{
"mcpServers": {
"word-doc-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 66 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Word_doc_MCP_Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A powerful Model Context Protocol (MCP) server for Word document operations with dynamic C# code execution capabilities.
Build the project:
dotnet build
Run the server:
dotnet run
Test all tools (optional):
dotnet run -- --test
This will create a test_document.docx file demonstrating all available tools.
Add to your claude_desktop_config.json:
{
"mcpServers": {
"word-doc-server": {
"command": "dotnet",
"args": ["run", "--project", "C:\\path\\to\\WordDoc_MCP\\WordDoc_MCP.csproj"]
}
}
}
Or using a published executable:
{
"mcpServers": {
"word-doc-server": {
"command": "C:\\path\\to\\WordDoc_MCP.exe"
}
}
}
Add to your MCP configuration:
{
"servers": {
"word-doc-server": {
"command": "dotnet",
"args": ["C:\\path\\to\\WordDoc_MCP.dll"]
}
}
}
create_word_documentCreate a new Word document with specified content.
Parameters:
filePath (string): Path where the document will be createdcontent (string): Text content to addtitle (string, optional): Document titleExample:
Create a Word document at "report.docx" with title "Annual Report" and content "This is the introduction."
read_word_documentRead content from an existing Word document.
Parameters:
filePath (string): Path to the documentappend_to_word_documentAppend content to an existing Word document.
Parameters:
filePath (string): Path to the documentcontent (string): Text to appendupdate_word_documentFind and replace text in a Word document.
Parameters:
filePath (string): Path to the documentsearchText (string): Text to findreplaceText (string): Replacement textadd_formatted_contentAdd formatted content with various styling options.
Parameters:
filePath (string): Path to the documentcontent (string): Content to addbold (boolean, optional): Make text bolditalic (boolean, optional): Make text italicfontSize (integer, optional): Font size in points (default: 11)heading (integer, optional): Heading level 1-6, 0 for normal textExample:
Add "Executive Summary" to report.docx as Heading 1 with bold formatting
add_tableAdd a table to a Word document.
Parameters:
filePath (string): Path to the documentrows (integer): Number of rowscolumns (integer): Number of columnsdata (string, optional): Table data as JSON arrayExample:
Add a 3x4 table to report.docx
get_document_infoGet metadata and statistics about a document.
Parameters:
filePath (string): Path to the documentexecute_codeExecute C# code dynamically.
Parameters:
code (string): C# code to executereturnResult (boolean, optional): Return execution result (default: true)Example:
execute_code(code: "DateTime.Now.AddDays(7).ToString(\"yyyy-MM-dd\")"
... [View full README on GitHub](https://github.com/keerukee/word_doc_MCP_Server#readme)