ActiveCollab exposes a MPC server. But the documentation on how to configure it in Claude is brief.
In ActiveCollab
- Go to Apps & Integrations → MCP.
- Click Add MCP Client.
- Enter your password.
- Select Claude.
- Click Add.
In Claude
- Open Claude.app
- Open the settings
⌘ + , - Click “Developer”. You will see the “Local MCP servers”
- Click “Edit config”
- Open the file
claude_desktop_config.jsonwith your favorite texteditor - Search for the section `mcpServers` if it is present. If not you can create it
- Add the config that ActiveCollab provided
It will end up something like below:
{
"mcpServers": {
"ActiveCollab Project Management": {
"command": "npx",
"args": [
"-y",
"mcp-remote@latest",
"...",
"--header",
"Authorization: Bearer ${AUTH_TOKEN}"
],
"env": {
"AUTH_TOKEN": "..."
}
}
},
"preferences": {
...
}
}