Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
PostHog analytics via MCP - dashboards, insights, feature flags, experiments, surveys, and error tracking. Use when checking analytics, viewing dashboards, managing feature flags, or investigating error tracking data. --- name: posthog description: >- PostHog analytics via MCP - dashboards, insights, feature flags, experiments, surveys, and error tracking. Use when checking analytics, viewing dashboards, managing feature flags, or investigating error tracking data. metadata: {"openclaw":{"emoji":"🦔","requires":{"bins":["mcporter"]}}} --- PostHog Analytics, feature flags, experiments, and error tracking via PostHog MCP. Setup Post Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
posthog is best for general automation workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
PostHog analytics via MCP - dashboards, insights, feature flags, experiments, surveys, and error tracking. Use when checking analytics, viewing dashboards, managing feature flags, or investigating error tracking data. --- name: posthog description: >- PostHog analytics via MCP - dashboards, insights, feature flags, experiments, surveys, and error tracking. Use when checking analytics, viewing dashboards, managing feature flags, or investigating error tracking data. metadata: {"openclaw":{"emoji":"🦔","requires":{"bins":["mcporter"]}}} --- PostHog Analytics, feature flags, experiments, and error tracking via PostHog MCP. Setup Post
Public facts
5
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 25, 2026
Vendor
Carluc Kit
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/carluc-kit/posthog-skill.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Carluc Kit
Protocol compatibility
MCP
Adoption signal
1 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
mcporter call posthog.<tool> [args]
bash
# List all dashboards
mcporter call posthog.dashboards-get-all
# Get specific dashboard
mcporter call posthog.dashboard-get dashboardId=123
# Create dashboard
mcporter call posthog.dashboard-create --args '{"data":{"name":"My Dashboard","description":"..."}}'
# Delete dashboard
mcporter call posthog.dashboard-delete dashboardId=123
# Add insight to dashboard
mcporter call posthog.add-insight-to-dashboard --args '{"data":{"insightId":"abc","dashboardId":123}}'bash
# List all insights
mcporter call posthog.insights-get-all
# Get specific insight
mcporter call posthog.insight-get insightId=abc123
# Run a query (trends, funnels, HogQL)
mcporter call posthog.query-run --args '{"query":{...}}'
# Generate HogQL from natural language
mcporter call posthog.query-generate-hogql-from-question question="How many users signed up last week?"
# Create insight from query
mcporter call posthog.insight-create-from-query --args '{"data":{...}}'bash
# List all feature flags
mcporter call posthog.feature-flag-get-all
# Get flag definition
mcporter call posthog.feature-flag-get-definition flagKey=my-flag
# Create feature flag
mcporter call posthog.create-feature-flag name="My Flag" key="my-flag" description="..." filters='{}' active=true
# Update feature flag
mcporter call posthog.update-feature-flag flagKey=my-flag --args '{"data":{...}}'
# Delete feature flag
mcporter call posthog.delete-feature-flag flagKey=my-flagbash
# List experiments
mcporter call posthog.experiment-get-all
# Get experiment details
mcporter call posthog.experiment-get experimentId=123
# Get experiment results
mcporter call posthog.experiment-results-get experimentId=123 refresh=true
# Create experiment
mcporter call posthog.experiment-create name="My Experiment" feature_flag_key="exp-my-test"
# Update experiment
mcporter call posthog.experiment-update experimentId=123 --args '{"data":{...}}'bash
# List all surveys
mcporter call posthog.surveys-get-all
# Get survey
mcporter call posthog.survey-get surveyId=abc
# Create survey
mcporter call posthog.survey-create name="Feedback Survey" --args '{"questions":["How satisfied are you?"]}'
# Get survey stats
mcporter call posthog.survey-stats survey_id=abc
# Global survey stats
mcporter call posthog.surveys-global-statsFull documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
PostHog analytics via MCP - dashboards, insights, feature flags, experiments, surveys, and error tracking. Use when checking analytics, viewing dashboards, managing feature flags, or investigating error tracking data. --- name: posthog description: >- PostHog analytics via MCP - dashboards, insights, feature flags, experiments, surveys, and error tracking. Use when checking analytics, viewing dashboards, managing feature flags, or investigating error tracking data. metadata: {"openclaw":{"emoji":"🦔","requires":{"bins":["mcporter"]}}} --- PostHog Analytics, feature flags, experiments, and error tracking via PostHog MCP. Setup Post
Analytics, feature flags, experiments, and error tracking via PostHog MCP.
PostHog is configured in config/mcporter.json with your API key.
All commands use mcporter to call PostHog tools:
mcporter call posthog.<tool> [args]
# List all dashboards
mcporter call posthog.dashboards-get-all
# Get specific dashboard
mcporter call posthog.dashboard-get dashboardId=123
# Create dashboard
mcporter call posthog.dashboard-create --args '{"data":{"name":"My Dashboard","description":"..."}}'
# Delete dashboard
mcporter call posthog.dashboard-delete dashboardId=123
# Add insight to dashboard
mcporter call posthog.add-insight-to-dashboard --args '{"data":{"insightId":"abc","dashboardId":123}}'
# List all insights
mcporter call posthog.insights-get-all
# Get specific insight
mcporter call posthog.insight-get insightId=abc123
# Run a query (trends, funnels, HogQL)
mcporter call posthog.query-run --args '{"query":{...}}'
# Generate HogQL from natural language
mcporter call posthog.query-generate-hogql-from-question question="How many users signed up last week?"
# Create insight from query
mcporter call posthog.insight-create-from-query --args '{"data":{...}}'
# List all feature flags
mcporter call posthog.feature-flag-get-all
# Get flag definition
mcporter call posthog.feature-flag-get-definition flagKey=my-flag
# Create feature flag
mcporter call posthog.create-feature-flag name="My Flag" key="my-flag" description="..." filters='{}' active=true
# Update feature flag
mcporter call posthog.update-feature-flag flagKey=my-flag --args '{"data":{...}}'
# Delete feature flag
mcporter call posthog.delete-feature-flag flagKey=my-flag
# List experiments
mcporter call posthog.experiment-get-all
# Get experiment details
mcporter call posthog.experiment-get experimentId=123
# Get experiment results
mcporter call posthog.experiment-results-get experimentId=123 refresh=true
# Create experiment
mcporter call posthog.experiment-create name="My Experiment" feature_flag_key="exp-my-test"
# Update experiment
mcporter call posthog.experiment-update experimentId=123 --args '{"data":{...}}'
# List all surveys
mcporter call posthog.surveys-get-all
# Get survey
mcporter call posthog.survey-get surveyId=abc
# Create survey
mcporter call posthog.survey-create name="Feedback Survey" --args '{"questions":["How satisfied are you?"]}'
# Get survey stats
mcporter call posthog.survey-stats survey_id=abc
# Global survey stats
mcporter call posthog.surveys-global-stats
# List errors
mcporter call posthog.list-errors orderBy=occurrences
# Get error details
mcporter call posthog.error-details issueId=uuid-here
# List event definitions
mcporter call posthog.event-definitions-list
# List properties for an event
mcporter call posthog.properties-list type=event eventName=pageview
# List person properties
mcporter call posthog.properties-list type=person
# Query logs
mcporter call posthog.logs-query dateFrom="2026-01-01T00:00:00Z" dateTo="2026-01-12T00:00:00Z"
# List log attributes
mcporter call posthog.logs-list-attributes
# Get attribute values
mcporter call posthog.logs-list-attribute-values key=service.name
# Get organizations
mcporter call posthog.organizations-get
# Get organization details
mcporter call posthog.organization-details-get
# Get projects
mcporter call posthog.projects-get
# Switch project
mcporter call posthog.switch-project projectId=123
# Get LLM costs
mcporter call posthog.get-llm-total-costs-for-project projectId=123 days=7
# Search PostHog docs
mcporter call posthog.docs-search query="how to track events"
| Category | Tools |
|----------|-------|
| Dashboards | dashboards-get-all, dashboard-get, dashboard-create, dashboard-update, dashboard-delete, dashboard-reorder-tiles, add-insight-to-dashboard |
| Insights | insights-get-all, insight-get, insight-create-from-query, insight-update, insight-delete, insight-query |
| Queries | query-run, query-generate-hogql-from-question |
| Feature Flags | feature-flag-get-all, feature-flag-get-definition, create-feature-flag, update-feature-flag, delete-feature-flag |
| Experiments | experiment-get-all, experiment-get, experiment-create, experiment-update, experiment-delete, experiment-results-get |
| Surveys | surveys-get-all, survey-get, survey-create, survey-update, survey-delete, survey-stats, surveys-global-stats |
| Errors | list-errors, error-details |
| Events | event-definitions-list, properties-list |
| Logs | logs-query, logs-list-attributes, logs-list-attribute-values |
| Org/Project | organizations-get, organization-details-get, projects-get, switch-organization, switch-project |
| Other | docs-search, get-llm-total-costs-for-project |
--output json for machine-readable output--args '{...}' for complex JSON parametersevent-definitions-list to discover available events before creating queriesdocs-search for PostHog-specific questionsMachine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/carluc-kit-posthog-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/carluc-kit-posthog-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/carluc-kit-posthog-skill/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/carluc-kit-posthog-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/carluc-kit-posthog-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/carluc-kit-posthog-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/carluc-kit-posthog-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/carluc-kit-posthog-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/carluc-kit-posthog-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T00:36:49.571Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Carluc Kit",
"href": "https://github.com/carluc-kit/posthog-skill",
"sourceUrl": "https://github.com/carluc-kit/posthog-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T02:23:38.793Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/carluc-kit-posthog-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/carluc-kit-posthog-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T02:23:38.793Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1 GitHub stars",
"href": "https://github.com/carluc-kit/posthog-skill",
"sourceUrl": "https://github.com/carluc-kit/posthog-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T02:23:38.793Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/carluc-kit-posthog-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/carluc-kit-posthog-skill/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to posthog and adjacent AI workflows.