We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/GhoshSrinjoy/overleaf-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# 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`.