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

# Attending

> MCP tools for the live events and games you have attended.

## `get_attended_event`

Get a single attended event (sports game, concert, theater show) in full detail, including venue, tickets, and per-player stat lines for sports games.

<ParamField path="id" type="integer" required>
  Event id.
</ParamField>

## `get_attended_events`

List events you bought tickets for: sports games, concerts, theater.

<ParamField path="attended" type="integer">
  1 = only attended, 0 = only unattended (purchased but missed). Omit to return both.
</ParamField>

<ParamField path="category" type="string">
  Top-level category filter. One of: `sports`, `music`, `arts`.
</ParamField>

<ParamField path="event_type" type="string">
  Specific type, e.g. "mlb\_game", "concert", "ncaaf\_game".
</ParamField>

<ParamField path="limit" type="number">
  Items per page (max 100). Defaults to `20`.
</ParamField>

<ParamField path="page" type="number">
  Page number, 1-indexed. Defaults to `1`.
</ParamField>

<ParamField path="season" type="integer">
  Sports season year (e.g. 2024).
</ParamField>

<ParamField path="team" type="string">
  Case-insensitive substring match against either team name in event\_data. e.g. "mariners", "huskies", "storm". Returns games where this team was either home or away.
</ParamField>

<ParamField path="team_id" type="integer">
  Exact match on the league-native team id. e.g. 136 = Seattle Mariners (MLB), 264 = Washington Huskies (ESPN). Use when the natural-language `team` substring is ambiguous.
</ParamField>

<ParamField path="venue_id" type="integer">
  Filter by venue id.
</ParamField>

<ParamField path="year" type="integer">
  Calendar year filter on event\_date.
</ParamField>

## `get_attended_player`

Detailed athlete card for an MLB / NFL / NCAAF / NBA player you've watched play in person.

<ParamField path="id" type="integer" required>
  Player id.
</ParamField>

<ParamField path="include_images" type="boolean">
  Include artwork/poster image content blocks in the response. Default true. Set false to keep responses small. Defaults to `true`.
</ParamField>

## `get_attended_player_stats`

Aggregate stats for one player across the games you attended.

<ParamField path="id" type="integer" required>
  Player id (from get\_attended\_players or get\_attended\_player).
</ParamField>

<ParamField path="season" type="integer">
  Optional. Single-season slice. Omit for career across all attended games (recommended — see tool description).
</ParamField>

## `get_attended_players`

Search the list of players (MLB, NFL, NCAAF, NBA, etc.) you have watched play in person.

<ParamField path="league" type="string">
  Filter by league slug, e.g. "mlb", "nfl", "ncaaf".
</ParamField>

<ParamField path="limit" type="integer">
  Items per page (max 50). Defaults to `10`.
</ParamField>

<ParamField path="name" type="string">
  Case-insensitive substring match on full name. e.g. "julio", "kirby", "will smith".
</ParamField>

<ParamField path="page" type="integer">
  Page number, 1-indexed. Defaults to `1`.
</ParamField>

<ParamField path="team_id" type="integer">
  Filter by primary team id (league-native, e.g. 136 = Mariners in MLB).
</ParamField>

## `get_attended_season`

Get every game you attended (or hold tickets for) in a given league + season, with W/L record. league is a slug like "mlb", "nfl", "ncaaf", "nba", "wnba".

<ParamField path="league" type="string" required>
  League slug (lowercase): "mlb", "nfl", "nba", "wnba", "ncaaf", "ncaab", "mls".
</ParamField>

<ParamField path="season" type="integer" required>
  Season year (e.g. 2024 for the 2024 MLB season).
</ParamField>

## `get_attending_stats`

Aggregate counts of attended events broken down by category, event\_type, and year.

This tool takes no parameters.

## `get_attending_year_in_review`

Year-in-review summary for attended events: totals, monthly breakdown, top venues, top concert performers, and the full event list.

<ParamField path="year" type="integer" required>
  Calendar year, e.g. 2024.
</ParamField>
