Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Openpanel

FreeNot checked

Minimal MCP server for OpenPanel analytics, enabling queries for landing pages, page events, and tracked event names.

GitHubEmbed

About

Minimal MCP server for OpenPanel analytics, enabling queries for landing pages, page events, and tracked event names.

README

A minimal MCP server for OpenPanel analytics. Focused on 3 tools:

Tool What it does
get_landing_pages Top pages users landed on, with counts
get_page_events All events on a specific page path
get_events_list All distinct event names being tracked

Setup

1. Get your OpenPanel credentials

Go to OpenPanel Dashboard → Settings → API Clients and create a client.
Copy the Client ID and Client Secret.

2. Install & run locally

npm install
npm run dev

Set env vars before running:

export OPENPANEL_CLIENT_ID=your_client_id
export OPENPANEL_CLIENT_SECRET=your_client_secret

3. Add to Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "openpanel": {
      "command": "node",
      "args": ["/path/to/openpanel-mcp/dist/index.js"],
      "env": {
        "OPENPANEL_CLIENT_ID": "your_client_id",
        "OPENPANEL_CLIENT_SECRET": "your_client_secret"
      }
    }
  }
}

Then restart Claude Desktop.

4. Deploy to CapRover

# Build image
docker build -t openpanel-mcp .

# Push to your registry or use CapRover's deploy flow
# Set env vars in CapRover app settings:
# OPENPANEL_CLIENT_ID=...
# OPENPANEL_CLIENT_SECRET=...

Example usage

"How many people visited my landing pages this week?"
"What events happened on /pricing in the last 30 days?"
"What events are being tracked on my site?"

from github.com/neverhunt/Open-panel-mcp-server

Installing Openpanel

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/neverhunt/Open-panel-mcp-server

FAQ

Is Openpanel MCP free?

Yes, Openpanel MCP is free — one-click install via Unyly at no cost.

Does Openpanel need an API key?

No, Openpanel runs without API keys or environment variables.

Is Openpanel hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install Openpanel in Claude Desktop, Claude Code or Cursor?

Open Openpanel on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Openpanel with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs