Word MCP Live for VS Code
io.github.ykarapazar/word-mcp-live
Live Microsoft Word editing via MCP — tracked changes, undo, comments, 40+ tools
client:VS Code
transport:stdio
runtime:pypi
Install Word MCP Live in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mcp-author",
"description": "MCP_AUTHOR",
"password": true
},
{
"type": "promptString",
"id": "mcp-author-initials",
"description": "MCP_AUTHOR_INITIALS",
"password": true
}
],
"servers": {
"word-mcp-live": {
"type": "stdio",
"command": "uvx",
"args": [
"word-mcp-live"
],
"env": {
"MCP_AUTHOR": "${input:mcp-author}",
"MCP_AUTHOR_INITIALS": "${input:mcp-author-initials}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs