Finance
marketing-status - Claude MCP Skill
CLI dashboard for marketing metrics. Pulls from PostHog, Stripe, and Postiz MCPs when configured. Shows traffic, activation, conversion. Includes CLI script examples for direct API access.
SEO Guide: Enhance your AI agent with the marketing-status tool. This Model Context Protocol (MCP) server allows Claude Desktop and other LLMs to cli dashboard for marketing metrics. pulls from posthog, stripe, and postiz mcps when configured. sh... Download and configure this skill to unlock new capabilities for your AI workflow.
Documentation
SKILL.md# /marketing-status
Marketing metrics dashboard. Shows what's working.
## Philosophy
If you can't measure it, you can't iterate. Three metrics that matter:
1. Traffic source - where people came from
2. Activation - did they do the core thing once?
3. Conversion - paid or email signup
## Output Format
Show a dashboard like:
```
MARKETING STATUS
================
Traffic (last 7 days)
āā Direct: XXX
āā Twitter: XXX
āā Reddit: XXX
āā HN: XXX
āā Other: XXX
Activation
āā Signups: XXX
āā Activated: XXX (XX%)
āā Core action: XXX
Revenue (Stripe)
āā MRR: $XXX
āā New this week: $XXX
āā Churn: $XXX
```
## Data Sources
### PostHog MCP (if configured)
- Traffic by source
- Signup events
- Activation events (custom)
- Core action events (custom)
### Stripe MCP (if configured)
- MRR calculation
- New revenue
- Churn
### Postiz MCP (if configured)
- Post performance
- Engagement metrics
- Scheduled posts
## CLI Script Examples
### PostHog via MCP (Preferred)
When PostHog MCP is configured, Claude can query directly:
- "What are my top traffic sources this week?"
- "Show signup conversion rate by source"
- "Which features have the highest engagement?"
### PostHog via CLI
```bash
# Get pageviews for last 7 days
curl -s "https://app.posthog.com/api/projects/${POSTHOG_PROJECT_ID}/insights/trend/" \
-H "Authorization: Bearer $POSTHOG_API_KEY" \
-d '{"events": [{"id": "$pageview"}], "date_from": "-7d"}' | jq '.result[0].data | add'
# Get signups by referrer
curl -s "https://app.posthog.com/api/projects/${POSTHOG_PROJECT_ID}/insights/trend/" \
-H "Authorization: Bearer $POSTHOG_API_KEY" \
-d '{"events": [{"id": "signup"}], "breakdown": "$referrer", "date_from": "-7d"}' | jq
# Get feature flag evaluations
curl -s "https://app.posthog.com/api/projects/${POSTHOG_PROJECT_ID}/feature_flags/" \
-H "Authorization: Bearer $POSTHOG_API_KEY" | jq '.[].key'
```
### Stripe via CLI
```bash
# MRR calculation (active subscriptions)
stripe subscriptions list --status=active --limit=100 | jq '[.data[].plan.amount] | add / 100'
# New revenue this week
stripe balance_transactions list --created[gte]=$(date -v-7d +%s) --limit=100 | jq '[.data[].amount] | add / 100'
# Churn (canceled subscriptions)
stripe subscriptions list --status=canceled --created[gte]=$(date -v-7d +%s) | jq '[.data[].plan.amount] | add / 100'
```
## Fallback (No MCPs)
If MCPs not configured, show:
1. Instructions for setting up PostHog
2. Links to dashboards (PostHog, Stripe, etc.)
3. Recommend running /check-observability
## Process
1. Check which MCPs are available
2. Pull metrics from available sources
3. Format into dashboard view
4. Highlight anomalies or opportunities
5. Suggest next actions based on data
## MCP Configuration
Add to your Claude config for full MCP integration:
```json
{
"mcpServers": {
"posthog": {
"command": "npx",
"args": ["-y", "@posthog/mcp-server"],
"env": {
"POSTHOG_API_KEY": "your-api-key",
"POSTHOG_PROJECT_ID": "your-project-id"
}
},
"stripe": {
"command": "npx",
"args": ["-y", "@stripe/mcp", "--tools=all"],
"env": {
"STRIPE_SECRET_KEY": "your-stripe-key"
}
}
}
}
```
## Related Skills
- /check-observability - Audit analytics setup
- /growth-sprint - Weekly marketing ritual
- /check-stripe - Stripe integration auditSignals
Information
- Repository
- phrazzld/claude-config
- Author
- phrazzld
- Last Sync
- 3/2/2026
- Repo Updated
- 3/1/2026
- Created
- 1/27/2026
Reviews (0)
No reviews yet. Be the first to review this skill!
Related Skills
upgrade-nodejs
Upgrading Bun's Self-Reported Node.js Version
cursorrules
CrewAI Development Rules
cn-check
Install and run the Continue CLI (`cn`) to execute AI agent checks on local code changes. Use when asked to "run checks", "lint with AI", "review my changes with cn", or set up Continue CI locally.
CLAUDE
CLAUDE.md
Related Guides
Bear Notes Claude Skill: Your AI-Powered Note-Taking Assistant
Learn how to use the bear-notes Claude skill. Complete guide with installation instructions and examples.
Mastering tmux with Claude: A Complete Guide to the tmux Claude Skill
Learn how to use the tmux Claude skill. Complete guide with installation instructions and examples.
OpenAI Whisper API Claude Skill: Complete Guide to AI-Powered Audio Transcription
Learn how to use the openai-whisper-api Claude skill. Complete guide with installation instructions and examples.