> ## Documentation Index
> Fetch the complete documentation index at: https://docs.seamless.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Daily activity digest

> Pull the activity feed, summarize, and post to Slack.

Pull recent engagement events from Seamless and summarize them for your team.

## Prerequisites

* [Connect access](/mcp/access-control) for `get_activity_feed`
* Slack webhook or API (outside MCP) for posting

<Note>
  `get_activity_feed` has no date-range filter. Use `limit` (max 50) and `offset` to paginate, then summarize events in your agent. Filter by `campaignIdentifier` when you need a single campaign.
</Note>

## Sequence

```mermaid theme={null}
sequenceDiagram
  participant Agent
  participant MCP as Seamless MCP
  participant Slack
  Agent->>MCP: get_activity_feed
  MCP-->>Agent: opens, replies, bounces
  Agent->>Agent: Summarize by type
  Agent->>Slack: Post digest message
```

## Tool call

### get\_activity\_feed

```json theme={null}
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "get_activity_feed",
    "arguments": {
      "limit": 50,
      "offset": 0
    }
  },
  "id": 1
}
```

## Run with Claude Code

```text theme={null}
Use Seamless MCP get_activity_feed with limit 50 (paginate with offset if needed).
Summarize: total opens, replies, bounces, and calls by campaign from the returned events.
Format as a short Slack message with bullet points.
Do not post to Slack until I approve the summary.
```
