posthog-mcp
Enables AI agents to query PostHog analytics data directly via tool calls, including insights, events, feature flags, trends, and persons.
README
posthog-mcp
An MCP (Model Context Protocol) server that wraps the PostHog REST API, letting AI agents query your analytics data directly via tool calls — no browser tab required.
Works with Claude Desktop, Cursor, and any other MCP-compatible client.
What it does
Exposes five tools that cover the most common PostHog workflows:
| Tool | What it does |
|---|---|
get_insights |
Fetch a saved insight by ID (funnels, retention, trends) |
list_events |
Stream recent events, filterable by name, date range, or distinct ID |
get_feature_flags |
List all flags with rollout status and targeting rules |
query_trends |
Run an ad-hoc trends query and get a time series back |
get_persons |
Look up user profiles by distinct ID or search term |
Prerequisites
- Node.js 18+
- A PostHog account with a personal API key (Settings → Personal API Keys)
- Your project ID (visible in Project Settings or in the URL:
/project/<id>/)
Installation
git clone https://github.com/johnnikolo/posthog-mcp.git
cd posthog-mcp
npm install
cp .env.example .env # then fill in your API key and project ID
npm run build
Configuration
The server is configured via environment variables. When run locally, it automatically loads a .env file in the project root (via dotenv); when configured through an MCP client, use the client's env block instead (see below).
| Variable | Required | Default | Description |
|---|---|---|---|
POSTHOG_API_KEY |
Yes | — | Your PostHog personal API key |
POSTHOG_PROJECT_ID |
Yes | — | The numeric project ID to query |
POSTHOG_HOST |
No | https://app.posthog.com |
Override for self-hosted PostHog instances |
Wiring it up in Claude Desktop
Add this to your claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json, Windows: %APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"posthog": {
"command": "node",
"args": ["/absolute/path/to/posthog-mcp/dist/index.js"],
"env": {
"POSTHOG_API_KEY": "phx_your_key_here",
"POSTHOG_PROJECT_ID": "12345"
}
}
}
}
Restart Claude Desktop and the PostHog tools will appear automatically.
Tools reference
get_insights
Retrieve a saved PostHog insight by its numeric ID.
What does insight 42 show?
→ calls get_insights({ insight_id: 42 })
Parameters
insight_id(number, required) — the insight's IDrefresh(boolean, defaultfalse) — force a fresh calculation
list_events
Fetch recent events with optional filters.
Show me the last 50 user_signed_up events from the past week
→ calls list_events({ event: "user_signed_up", after: "2024-01-01T00:00:00Z", limit: 50 })
Parameters
event(string) — filter to a specific event nameafter/before(ISO 8601 string) — date rangelimit(number, default100, max500)distinct_id(string) — filter to a single user
get_feature_flags
List all feature flags with their rollout configuration.
Which feature flags are currently active?
→ calls get_feature_flags({ active_only: true })
Parameters
active_only(boolean, defaultfalse) — return only enabled flags
query_trends
Run a trends query and get back a time series.
How many $pageview and user_signed_up events happened per day over the last 30 days?
→ calls query_trends({ events: ["$pageview", "user_signed_up"], date_from: "-30d", interval: "day" })
Parameters
events(string[], required) — event names to includedate_from(string, default"-7d") — start of range (relative or ISO 8601)date_to(string) — end of range (defaults to now)interval("hour" | "day" | "week" | "month", default"day")breakdown(string) — property to break results down by (e.g."$browser")
get_persons
Look up person profiles.
Find the user with distinct ID "user_abc123"
→ calls get_persons({ distinct_id: "user_abc123" })
Parameters
distinct_id(string) — look up a specific personsearch(string) — search by email, name, or propertylimit(number, default20, max100)
Development
# run directly without building
npm run dev
# type-check only
npm run typecheck
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.