ubeytd/open-panel-mcp
Platform-specific configuration:
{
"mcpServers": {
"open-panel-mcp": {
"command": "npx",
"args": [
"-y",
"open-panel-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
[](https://www.npmjs.com/package/openpanel-mcp-server) [](https://opensource.org/licenses/MIT)
MCP server for OpenPanel — the open-source analytics platform. Enables LLMs to track events, manage user profiles, and query analytics data.
Works with self-hosted and cloud OpenPanel instances.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"openpanel": {
"command": "npx",
"args": ["-y", "openpanel-mcp-server"],
"env": {
"OPENPANEL_CLIENT_ID": "your-client-id",
"OPENPANEL_CLIENT_SECRET": "your-client-secret",
"OPENPANEL_API_URL": "https://your-domain.com/api"
}
}
}
}claude mcp add openpanel \
-e OPENPANEL_CLIENT_ID=your-client-id \
-e OPENPANEL_CLIENT_SECRET=your-client-secret \
-e OPENPANEL_API_URL=https://your-domain.com/api \
-- npx -y openpanel-mcp-servernpx openpanel-mcp-server| Environment Variable | Required | Default | Description | |---------------------|----------|---------|-------------| | OPENPANEL_CLIENT_ID | Yes | — | Client ID from your OpenPanel project | | OPENPANEL_CLIENT_SECRET | Yes | — | Client secret from your OpenPanel project | | OPENPANEL_API_URL | No | https://api.openpanel.dev | API URL (set for self-hosted instances) |
Get credentials from your OpenPanel dashboard: Settings → Projects → Select project → Create client (Root type).
| Tool | Description | |------|-------------| | openpanel_track_event | Track a custom analytics event with properties | | openpanel_identify_profile | Create or update a user profile | | openpanel_increment_property | Increment
Loading reviews...