list_saved_funnels
Retrieve saved funnel names and IDs from Mixpanel to identify available funnels for analysis and gather required IDs for query_funnel_report.
Instructions
Get the names and IDs of your saved funnels. Useful for discovering available funnels for analysis and retrieving funnel IDs needed for the query_funnel_report tool.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| project_id | No | The Mixpanel project ID. Optional since it has a default. | |
| workspace_id | No | The ID of the workspace if applicable | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "project_id": {
      "description": "The Mixpanel project ID. Optional since it has a default.",
      "type": "string"
    },
    "workspace_id": {
      "description": "The ID of the workspace if applicable",
      "type": "string"
    }
  },
  "type": "object"
}