CLAUDE_CONFIG.md•547 B
# Claude MCP Client Configuration
Add the following entry to your MCP client configuration (for Claude Desktop, edit `claude_desktop_config.json`):
```json
{
"mcpServers": {
"overleaf": {
"command": "docker",
"args": ["compose", "run", "--rm", "-T", "mcp"]
}
}
}
```
If you prefer to run the server directly on Node.js instead of Docker, swap the command to `node` and point to `overleaf-mcp-server.js`. In that case ensure a Redis instance remains reachable on the host, as noted in `README.md:88` and `README.md:118`.