Skip to content
VS Code

MCP Office Word for VS Code

io.github.dosev-ai/mcp-office-word

50-tool Word MCP server. Document assembly, tracked changes, and export. Windows-first.

client:VS Code transport:stdio runtime:pypi

Install MCP Office Word in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "word-allowlist-roots",
      "description": "WORD_ALLOWLIST_ROOTS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "word-enable-write",
      "description": "WORD_ENABLE_WRITE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "word-enable-com",
      "description": "WORD_ENABLE_COM",
      "password": true
    }
  ],
  "servers": {
    "mcp-office-word": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-office"
      ],
      "env": {
        "WORD_ALLOWLIST_ROOTS": "${input:word-allowlist-roots}",
        "WORD_ENABLE_WRITE": "${input:word-enable-write}",
        "WORD_ENABLE_COM": "${input:word-enable-com}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

MCP Office Word in other clients