posthog-ff-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@posthog-ff-mcpList all stale feature flags."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
posthog-ff-mcp
A tiny, read-only MCP server that lets Claude read PostHog feature-flag state and metadata. It wraps PostHog's REST API — listing flags, reading a flag's full definition, checking staleness, and explaining how flags evaluate for a person. It never creates, updates, or deletes anything.
It's a single Python file (server.py) with inline dependencies, so it runs locally
with uv and no build step.
Prerequisites
uvinstalled.A PostHog personal API key scoped to at least
feature_flag:readfor your project. Create one at<your-host>/settings/user-api-keys.
Related MCP server: meta-mcp
Configuration
All config is via environment variables (no defaults):
Variable | Required | Example | Notes |
| yes |
| App host. EU: |
| yes |
| Numeric project id (the number in the app URL |
| yes |
| Personal API key with |
See .env.example.
Run it locally
POSTHOG_HOST=https://eu.posthog.com \
POSTHOG_PROJECT_ID=13105 \
POSTHOG_PERSONAL_API_KEY=phx_your_key \
uv run server.pyThe first run resolves dependencies automatically; the server then speaks MCP over stdio.
Add to Claude Code
claude mcp add posthog-ff \
--env POSTHOG_HOST=https://eu.posthog.com \
--env POSTHOG_PROJECT_ID=13105 \
--env POSTHOG_PERSONAL_API_KEY=phx_your_key \
-- uv run --directory /ABSOLUTE/PATH/TO/posthog-ff-mcp server.pyReplace /ABSOLUTE/PATH/TO/posthog-ff-mcp with this repo's absolute path.
Add to Claude Desktop
Add this to claude_desktop_config.json
(macOS: ~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"posthog-ff": {
"command": "uv",
"args": ["run", "--directory", "/ABSOLUTE/PATH/TO/posthog-ff-mcp", "server.py"],
"env": {
"POSTHOG_HOST": "https://eu.posthog.com",
"POSTHOG_PROJECT_ID": "13105",
"POSTHOG_PERSONAL_API_KEY": "phx_your_key"
}
}
}
}Restart Claude Desktop afterward.
Tools
Tool | What it does | Key arguments |
| List flags as compact summaries, with paging/filtering. |
|
| Full definition + metadata of one flag, including |
|
| Staleness classification of a flag. |
|
| Explain how every flag evaluates for a person and why. |
|
Example prompts
"List the active feature flags in PostHog."
"Which flags are stale?"
"Show me the full targeting for the
new-onboardingflag.""Is
beta-dashboardsafe to delete?""How do the flags evaluate for distinct id
user_123?"
Scope & limitations
Read-only. No create/update/delete — by design.
Rate limits are team-wide (480/min, 4800/hr); the server surfaces
429s clearly.Not built in this version (possible future extensions): remote-config payloads, activity/version history, SDK
local_evaluation, and the runtime/flagsevaluator (which uses a different host and the project token instead of the personal key).
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for Statsig API - interact with Statsig's feature flags, experiments, and analytics
Read-only MCP server for AIStatusDashboard status, incidents, metrics, and fallback recommendations.
The Cortex MCP server provides read-only access to real-time engineering context from the Cortex developer portal, allowing AI coding assistants to answer natural language questions about your organization's catalog (microservices, libraries, domains, teams, infrastructure), scorecards (engineering standards and best practices), initiatives (goals and deadlines), and Engineering Intelligence metrics. It includes tools for querying documentation, tracking personal entities, and accessing AI-assisted insights across the entire Cortex ecosystem.
Hosted MCP server for LLM cost estimation, model comparison, and budget-aware routing.
Related MCP Servers
AlicenseNot gradedqualityNot gradedmaintenanceA Model Context Protocol server that enables Claude Desktop users to interact directly with PostHog, allowing them to view projects and create annotations through natural language commands.10MIT- AlicenseCqualityDmaintenanceRead-only MCP server for Meta (Facebook) Graph API, enabling access to Marketing API, Pages, Instagram, and WhatsApp Business data through Claude Code and any MCP-compatible client.305 npm1MIT
- AlicenseAqualityCmaintenanceA read-only MCP server that allows Claude Code to securely access Zulip chat messages, streams, topics, and user information without modification capabilities.9MIT
- AlicenseNot gradedqualityBmaintenanceA read-only MCP server that gives Claude safe access to Kubernetes clusters, enabling listing, describing, and monitoring resources without mutation risks and with secret masking.1MIT