What is the Safe Docx MCP server?
AI-native surgical editing of Word .docx and OpenDocument .odt files with formatting preservation
How to install Safe Docx
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"safe-docx": {
"command": "npx",
"args": [
"-y",
"@usejunior/safe-docx"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"safe-docx": {
"command": "npx",
"args": [
"-y",
"@usejunior/safe-docx"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"safe-docx": {
"command": "npx",
"args": [
"-y",
"@usejunior/safe-docx"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"safe-docx": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@usejunior/safe-docx"
]
}
}
}Claude Code
claude mcp add safe-docx -- npx -y @usejunior/safe-docxRelated MCP servers
Agent Email
Maintained
Local email connectivity for AI agents — read, draft, send, and organize Outlook mail via MCP
3
View repository →TypeScript
Apache-2.0