npx skills add ...
npx skills add posthog/skills --skill managing-subscriptions
Create and manage scheduled PostHog subscriptions for insight snapshots, dashboard snapshots, and AI prompt reports. Use when a user wants recurring email, Slack, or Microsoft Teams delivery; an AI summary; delivery history; schedule or recipient changes; a test delivery; pause, resume, or deletion; or help with subscription permissions, limits, billing, and failures. Use product alerts when delivery must depend on a threshold or anomaly.
npx skills add posthog/skills --skill managing-subscriptions
Subscriptions deliver product data on a fixed schedule. They support insight snapshots, dashboard snapshots, and AI prompt reports.
creating-ai-subscription for the detailed prompt report creation workflow.Subscriptions do not evaluate thresholds, recovery, consecutive breaches, or quiet hours. Snapshot subscriptions attempt each scheduled occurrence even when the saved results do not change.
| Tool | Purpose |
|---|---|
posthog:subscriptions-list | Find subscriptions |
posthog:subscriptions-retrieve | Read one subscription |
posthog:subscriptions-create | Create a subscription |
posthog:subscriptions-partial-update | Change, pause, or resume a subscription |
posthog:subscriptions-test-delivery-create | Send a test delivery |
posthog:subscriptions-deliveries-list | List delivery attempts |
posthog:subscriptions-deliveries-retrieve | Read one delivery |
posthog:subscriptions-delete | Stop all future deliveries |
posthog:integrations-list | Find a Slack integration |
posthog:integrations-channels-retrieve | Find Slack channels |
posthog:dashboard-get | Read dashboard tiles |
posthog:insight-get | Resolve an insight ID |
posthog:subscriptions-list and check for a duplicate.send_test_now to the user's choice.posthog:subscriptions-create.If creation times out or returns an uncertain result, list matching subscriptions before you retry. Creation is not idempotent. A blind retry can create a duplicate subscription and send a duplicate immediate delivery.
Do not infer missing recipients, channels, times, or time zones. Ask for these values before creation.
Use these list filters when they reduce ambiguity:
resource_type: insight, dashboard, or ai_prompt.target_type: email, slack, or teams.insight or insights: One insight ID or a comma-separated ID list.dashboard: One dashboard ID.dashboard_tiles: Insight subscriptions for live tiles on one dashboard.created_by: One creator UUID.Use search when the user supplied a title, insight name, dashboard name, or prompt text.
Prompt subscriptions match their title and prompt text.
Compare the resource, destination type, target, schedule, and enabled state.
A Teams result contains only the webhook host. One host can serve many channels. Do not use the host to identify a duplicate.
Show the title, schedule, creator, and creation date for possible Teams matches. Ask the user to select a subscription when these fields identify it. Create a new subscription when no field identifies the target channel.
Check these fields after creation:
resource_type matches insight, dashboard, or ai_prompt.target_type and the safe target label match the request.enabled is true.next_delivery_date matches the schedule and time zone.Call posthog:subscriptions-retrieve before each update.
Before an update that can send a delivery, list the current delivery IDs.
Then call posthog:subscriptions-partial-update with the changed fields.
Ask before an update that can send an immediate delivery. The MCP update tool cannot suppress an immediate delivery for these changes. If the user does not approve delivery, do not make the update.
enabled: false to pause delivery.enabled: true to resume delivery.target_type and target_value together when you change the destination type.target_value to keep a saved Teams webhook URL.The resource type cannot change. Create a new subscription when the user wants a different resource type.
Check the new next_delivery_date after a schedule update.
An exhausted schedule cannot resume until the user extends or removes its end condition.
After an update that sends a delivery, poll for a new target_change delivery ID.
Read that delivery until it reaches a final state.
Then retrieve the subscription and check its final enabled value.
posthog:subscriptions-test-delivery-create.Wait between polls and stop after two minutes. If delivery does not reach a final state, report the last state and suggest another check later.
A test sends a real message.
The tool returns 202 after it queues the delivery.
It returns 409 when another test is active or the subscription is disabled.
Delivery states are starting, completed, failed, and skipped.
Filter the delivery list by status when you investigate a failure.
A queued workflow does not prove delivery.
A completed delivery can contain partial recipient failures.
The MCP tools hide per-recipient results.
Do not claim that each recipient succeeded.
Confirm the subscription ID and safe destination label.
Ask for approval unless the user already requested deletion or unsubscribe.
Then call posthog:subscriptions-delete.
Deletion is a one-way soft delete through MCP. It stops future deliveries and frees a plan slot. Create a new subscription if the user needs it again.
creating-ai-subscription: Create a report from a free-text AI prompt.building-a-dashboard: Create a dashboard before you subscribe to it.adding-product-alerting: Notify users when data meets a condition.managing-reminders: Schedule a private prompt to inspect a resource.understanding-billing-usage: Investigate PostHog AI credit use.