CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
friendlygeorge avatar

Posthog Mcp Server

friendlygeorge/posthog-mcp-server
STDIOregistry active
Summary

Connects Claude and other MCP clients to PostHog's product analytics API. You get 12 tools covering the main PostHog surface area: query events with filters, look up persons and their properties, execute saved insights and trends, check feature flag evaluations for specific users, pull experiment results with statistical significance, and list dashboards, cohorts, and actions. Useful when you're debugging user behavior, checking A/B test performance, or need to surface analytics data without leaving your editor. Requires a PostHog personal API key and works with both PostHog Cloud (US/EU) and self-hosted instances. The project ID can be set globally or passed per call.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
ego lite browserego lite browser
ego lite browser
Fastest browser for AI agents to run web automation tasks, always free.
Download Free life-time →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Agent, connect blockchain
Agent, connect blockchain
Connect your Claude agent to live crypto prices and trading routes via 1inch
Get the MCP →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeHealth MCP ServerCodeHealth MCP Server
CodeHealth MCP Server
Protect your code quality, stop the AI slop.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
ego lite browserego lite browser
ego lite browser
Fastest browser for AI agents to run web automation tasks, always free.
Download Free life-time →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Agent, connect blockchain
Agent, connect blockchain
Connect your Claude agent to live crypto prices and trading routes via 1inch
Get the MCP →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeHealth MCP ServerCodeHealth MCP Server
CodeHealth MCP Server
Protect your code quality, stop the AI slop.
Try For Free →

PostHog MCP Server

Connect AI assistants to PostHog — query events, persons, insights, dashboards, feature flags, cohorts, and experiments through the Model Context Protocol.

Works with Claude Desktop, Cursor, Windsurf, Cline, Continue, and any MCP-compatible client.

Features

ToolDescription
list_eventsQuery events with filters (event name, person, date range, properties)
get_personGet a person (user) by distinct_id — properties, creation date, event count
list_personsSearch and list persons with pagination
list_dashboardsList all dashboards — names, tags, widget counts
get_dashboardGet a specific dashboard with its insights and widgets
execute_insightExecute a saved insight (trend, funnel, etc.) and get results
list_feature_flagsList all feature flags — key, active status, rollout percentage
evaluate_feature_flagEvaluate a flag for a specific user and get variant value
list_cohortsList cohorts — name, type (dynamic/static/SQL), person count
list_experimentsList A/B tests — name, status, feature flag, dates
get_experimentGet experiment results with variant data and statistical significance
list_actionsList custom event actions/definitions
get_project_infoGet project name, ID, settings, and data region

Quick Start

1. Get a PostHog API Key

Go to PostHog → Settings → Personal API Keys and create a key with read access.

Or visit: https://your-instance.posthog.com/settings/user-api-keys

2. Configure your MCP client

Claude Desktop — add to claude_desktop_config.json:

{
  "mcpServers": {
    "posthog": {
      "command": "npx",
      "args": ["-y", "posthog-mcp-server"],
      "env": {
        "POSTHOG_API_KEY": "phx_YOUR_API_KEY_HERE",
        "POSTHOG_HOST": "https://us.i.posthog.com",
        "POSTHOG_PROJECT": "YOUR_PROJECT_ID"
      }
    }
  }
}

Cursor — add to MCP settings (.cursor/mcp.json):

{
  "mcpServers": {
    "posthog": {
      "command": "npx",
      "args": ["-y", "posthog-mcp-server"],
      "env": {
        "POSTHOG_API_KEY": "phx_YOUR_API_KEY_HERE",
        "POSTHOG_HOST": "https://us.i.posthog.com",
        "POSTHOG_PROJECT": "YOUR_PROJECT_ID"
      }
    }
  }
}

3. Run manually (for testing)

# Clone and build
git clone https://github.com/friendlygeorge/posthog-mcp-server.git
cd posthog-mcp-server
npm install
npm run build

# Run
POSTHOG_API_KEY=phx_... POSTHOG_PROJECT=12345 node dist/index.js

Environment Variables

VariableRequiredDefaultDescription
POSTHOG_API_KEY✅—Your PostHog personal API key (phx_...)
POSTHOG_HOST❌https://us.i.posthog.comPostHog instance URL (use https://eu.i.posthog.com for EU)
POSTHOG_PROJECT❌""Default project ID. If empty, must be specified per-call.

Self-hosted PostHog

If you run PostHog on your own infrastructure, set POSTHOG_HOST to your instance URL:

POSTHOG_HOST=https://posthog.yourcompany.com

Example Queries

Once configured, ask your AI assistant:

  • "Show me the last 20 pageview events"
  • "Who are the most active users this week?"
  • "What's the status of our signup conversion experiment?"
  • "Is the new-checkout-flow feature flag enabled for user abc123?"
  • "Show me all active dashboards"
  • "Execute insight 42 and show me the trend"
  • "List all feature flags that are currently active"
  • "How many people are in the 'Power Users' cohort?"

API Reference

This server wraps the PostHog REST API (v1). Full documentation:

  • PostHog API docs: https://posthog.com/docs/api
  • MCP protocol: https://modelcontextprotocol.io
  • PostHog: https://posthog.com

Development

npm install
npm run dev     # Build and run
npm run build   # Build only
npm start       # Run built output

License

MIT © Nova

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
ego lite browserego lite browser
ego lite browser
Fastest browser for AI agents to run web automation tasks, always free.
Download Free life-time →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Agent, connect blockchain
Agent, connect blockchain
Connect your Claude agent to live crypto prices and trading routes via 1inch
Get the MCP →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeHealth MCP ServerCodeHealth MCP Server
CodeHealth MCP Server
Protect your code quality, stop the AI slop.
Try For Free →
Categories
Monitoring & Observability
Registryactive
Packageposthog-mcp-server
TransportSTDIO
UpdatedJun 6, 2026
View on GitHub

More from friendlygeorge

  • Sentry Mcp Server
  • Stripe Mcp Server
  • Coingecko Mcp Server
  • Resend Mcp Server
  • Defillama Mcp Server
  • Etherscan Mcp Server
  • Jira Mcp Server
  • Jobber Mcp Server
  • Plausible Mcp Server

Related Monitoring & Observability MCP Servers

View all →
g-scorpiosky avatar
Quant Finance MCP Server for Stock Analysis and Options Analytics - HPSILab

g-scorpiosky/hpsilab-quantum-finance

Options analytics MCP for detecting IV mispricing and directional edge — before the market corrects. IV surface modeling, implied volatility rank, Monte Carlo simulation, options flow pressure maps, AI predictions (Bullish/Neutral/Bearish + confidence score), and equity curve backtesting. analyze_stock delivers a complete institutional-grade signal in one call. Free tier · Pro $9.99/mo · EN · 中文 · 日本語
g-scorpiosky avatar
Quant Finance MCP Server for Stock Analysis and Options Analytics - HPSILab

g-scorpiosky/hpsilab-quantum-finance-74be1f33

Options analytics MCP for detecting IV mispricing and directional edge — before the market corrects. IV surface modeling, implied volatility rank, Monte Carlo simulation, options flow pressure maps, AI predictions (Bullish/Neutral/Bearish + confidence score), and equity curve backtesting. analyze_stock delivers a complete institutional-grade signal in one call. Free tier · Pro $9.99/mo · EN · 中文 · 日本語
gantta avatar
Gantta

gantta/gantta-mcp

Turn conversations into project plans. Gantta connects your AI assistant to a full project management backend — plan projects, manage tasks, chase actions, and generate reports, all through natural language. ### What you can do - **Create project plans** — Describe your project in plain language and get a structured plan with milestones, dependencies, deadlines, and deliverables - **Break down tasks** — Automatically decompose projects into prioritised actions with owners, due dates, and status tracking - **Assign owners** — Allocate tasks to team members and track who is responsible for what across every project - **Chase actions automatically** — Follow up on overdue or pending actions with automatic owner notifications so nothing slips through the cracks - **Capture meeting transcriptions** — Log meeting notes, standups, or any conversation and extract structured action items automatically - **Generate reports and slide decks** — Produce project status reports, progress summaries, and presentation-ready slide decks directly from your project data - **Track timelines** — View project schedules, milestone progress, and dependency chains at a glance ### Who it's for Product managers, project leads, founders, and agency teams who run projects across multiple clients and want to manage everything from their AI assistant without switching tools. ### No account needed to start Try Gantta instantly — your AI assistant can create project plans right away. When you're ready to save your work, collaborate with your team, and unlock full reporting, claim your workspace at [gantta.co](https://www.gantta.co). ### Why Gantta over traditional PM tools Traditional project management tools require manual data entry, constant tab-switching, and rigid workflows. Gantta lets you manage projects the way you actually think — by talking. Your AI assistant becomes your project manager, handling the structure while you focus on the work. Built for teams who plan through conversation, not spreadsheets.
glitch-exec-labs avatar
Glitch Grow Linkedin Ad Mcp

glitch-exec-labs/glitch-grow-linkedin-ad-mcp

MCP server for the LinkedIn Marketing API — campaigns, analytics, creatives.
googlesuper avatar
Google Super

googlesuper

Google Super App combines all Google services including Drive, Calendar, Gmail, Sheets, Analytics, Ads, and more, providing a unified platform for seamless integration and management of your digital life.
hholen avatar
Lodd Mcp Server

hholen/lodd-mcp-server

Headless web analytics for AI agents. 42 MCP tools for traffic, events, funnels.