8.2k★by mrgoodb
mixpanel – OpenClaw Skill
mixpanel is an OpenClaw Skills integration for data analytics workflows. Track events and analyze user behavior via Mixpanel API. Query analytics, manage user profiles, and export data.
8.2k stars2.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics
Skill Snapshot
| name | mixpanel |
| description | Track events and analyze user behavior via Mixpanel API. Query analytics, manage user profiles, and export data. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/mixpanel |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/mixpanel |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
269 BSKILL.md
1.6 KBSKILL.md
name: mixpanel description: Track events and analyze user behavior via Mixpanel API. Query analytics, manage user profiles, and export data. metadata: {"clawdbot":{"emoji":"📊","requires":{"env":["MIXPANEL_TOKEN","MIXPANEL_API_SECRET"]}}}
Mixpanel
Product analytics.
Environment
export MIXPANEL_TOKEN="xxxxxxxxxx" # Project token (tracking)
export MIXPANEL_API_SECRET="xxxxxxxxxx" # API secret (querying)
export MIXPANEL_PROJECT_ID="123456"
Track Event
curl "https://api.mixpanel.com/track" \
-d "data=$(echo -n '{"event":"Button Clicked","properties":{"distinct_id":"user123","token":"'$MIXPANEL_TOKEN'"}}' | base64)"
Track Event (JSON)
curl -X POST "https://api.mixpanel.com/import?strict=1" \
-u "$MIXPANEL_API_SECRET:" \
-H "Content-Type: application/json" \
-d '[{"event":"Purchase","properties":{"distinct_id":"user123","time":'$(date +%s)',"price":29.99}}]'
Query Events (JQL)
curl "https://mixpanel.com/api/2.0/jql" \
-u "$MIXPANEL_API_SECRET:" \
-d 'script=function main(){return Events({from_date:"2024-01-01",to_date:"2024-01-31"}).groupBy(["name"],mixpanel.reducer.count())}'
Get User Profile
curl "https://mixpanel.com/api/2.0/engage?distinct_id=user123" \
-u "$MIXPANEL_API_SECRET:"
Update User Profile
curl "https://api.mixpanel.com/engage#profile-set" \
-d "data=$(echo -n '{"$token":"'$MIXPANEL_TOKEN'","$distinct_id":"user123","$set":{"plan":"premium"}}' | base64)"
Links
- Dashboard: https://mixpanel.com
- Docs: https://developer.mixpanel.com
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install mixpanel?
Run openclaw add @mrgoodb/mixpanel in your terminal. This installs mixpanel into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/mixpanel. Review commits and README documentation before installing.
