> For the complete documentation index, see [llms.txt](https://docs.podigee.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.podigee.com/documentation/start-here/ai-agents/mcp-prompts/analytics-summary.md).

# analytics\_summary

Reference for the \`analytics\_summary\` MCP prompt.

Choose and request a podcast or episode analytics summary.

## Contract

| Property         | Value               |
| ---------------- | ------------------- |
| Prompt name      | `analytics_summary` |
| Arguments        | None                |
| Executes changes | No                  |

## Example request

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "prompts/get",
  "params": {
    "name": "analytics_summary",
    "arguments": {}
  }
}
```

## Result shape

```json
{
  "type": "object",
  "required": [
    "description",
    "messages"
  ],
  "additionalProperties": false,
  "properties": {
    "description": {
      "type": "string"
    },
    "messages": {
      "type": "array",
      "minItems": 1,
      "items": {
        "type": "object",
        "required": [
          "role",
          "content"
        ],
        "additionalProperties": false,
        "properties": {
          "role": {
            "const": "user"
          },
          "content": {
            "type": "object",
            "required": [
              "type",
              "text"
            ],
            "additionalProperties": false,
            "properties": {
              "type": {
                "const": "text"
              },
              "text": {
                "type": "string"
              }
            }
          }
        }
      }
    }
  }
}
```

The returned description is: Summarize podcast or episode performance.

The result contains one user-role text message. The prompt supplies operating guidance to the client. It does not call a tool, grant a scope, or confirm an action.

## Guidance supplied to the client

Call analytics\_summary with exactly one podcast\_id or one episode\_id, never both. The visible history is limited by the plan, so a short range is not necessarily missing data: read history\_window in the response and say plainly that a longer range needs a higher plan rather than reporting a gap. In the downloads map, complete is the download count to quote; raw and total are larger and will overstate it. Days with no traffic are returned as zeroes, so the array length is the number of days you asked for. There is no comparison or ranking tool yet, so compare periods by making one call per period and aligning them yourself.

The client must still inspect tool results and follow the normal preview, confirmation, idempotency, and durable-operation contracts.

## Related tools

* [`analytics_summary`](/documentation/start-here/ai-agents/mcp-tools/analytics-summary.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.podigee.com/documentation/start-here/ai-agents/mcp-prompts/analytics-summary.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
