---
name: "xpay-quakelive-seek-thresholds"
description: "Find milestone moments where cumulative stats cross thresholds. Unlike seek_demo (which finds individual events like kills or chats), this tool tracks running totals across the entire demo and emits the frame where a threshold is first crossed. Use seek_demo to find a specific event ('rail kill on Dloobiq'). Use seek_thresholds to find a milestone ('10th kill', '1000 damage dealt', '5-killstreak'). Cumulative thresholds (emit once when first crossed): total_kills_ge, total_deaths_ge, total_damage_dealt_ge, total_damage_received_ge, total_headshots_ge, killstreak_ge (current kills without dying). Per-opponent: damage_dealt_to_player_ge + opponent_name, kills_on_player_ge + opponent_name. Instantaneous thresholds (emit every matching frame): health_le (low-health moments), health_ge (overhealth), armor_ge. Multiple thresholds combine with AND. Returns same FrameState as seek_demo with match_reason explaining which threshold was crossed and the current value."
version: "1.0.0"
price: "$0.02/call"
provider: "Mcps"
---

# Seek Thresholds

Find milestone moments where cumulative stats cross thresholds. Unlike seek_demo (which finds individual events like kills or chats), this tool tracks running totals across the entire demo and emits the frame where a threshold is first crossed. Use seek_demo to find a specific event ('rail kill on Dloobiq'). Use seek_thresholds to find a milestone ('10th kill', '1000 damage dealt', '5-killstreak'). Cumulative thresholds (emit once when first crossed): total_kills_ge, total_deaths_ge, total_damage_dealt_ge, total_damage_received_ge, total_headshots_ge, killstreak_ge (current kills without dying). Per-opponent: damage_dealt_to_player_ge + opponent_name, kills_on_player_ge + opponent_name. Instantaneous thresholds (emit every matching frame): health_le (low-health moments), health_ge (overhealth), armor_ge. Multiple thresholds combine with AND. Returns same FrameState as seek_demo with match_reason explaining which threshold was crossed and the current value.

**Provider:** Mcps
**Price:** $0.02/call
**Pricing model:** Flat rate per call

## When to Use

Use this tool when you need to find milestone moments where cumulative stats cross thresholds. unlike seek_demo (which finds individual events like kills or chats), this tool tracks running totals across the entire demo and emits the frame where a threshold is first crossed. use seek_demo to find a specific event ('rail kill on dloobiq'). use seek_thresholds to find a milestone ('10th kill', '1000 damage dealt', '5-killstreak'). cumulative thresholds (emit once when first crossed): total_kills_ge, total_deaths_ge, total_damage_dealt_ge, total_damage_received_ge, total_headshots_ge, killstreak_ge (current kills without dying). per-opponent: damage_dealt_to_player_ge + opponent_name, kills_on_player_ge + opponent_name. instantaneous thresholds (emit every matching frame): health_le (low-health moments), health_ge (overhealth), armor_ge. multiple thresholds combine with and. returns same framestate as seek_demo with match_reason explaining which threshold was crossed and the current value.. This is part of the Mcps provider on xpay✦.

## MCP Connection

Connect to xpay✦ to access this tool (and 87+ others):

```json
{
  "mcpServers": {
    "xpay": {
      "url": "https://mcp.xpay.sh/mcp?key=YOUR_API_KEY"
    }
  }
}
```

For Claude Code:
```bash
claude mcp add --transport http xpay "https://mcp.xpay.sh/mcp?key=YOUR_API_KEY"
```

## How to Execute

Use the xpay✦ meta-tools to run this tool:

1. **`xpay_details`** — Get full input schema: `xpay_details("quakelive/seek_thresholds")`
2. **`xpay_run`** — Execute: `xpay_run("quakelive/seek_thresholds", { ...inputs })`

## Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `health_le` | integer,null | No | Emit frames where POV health ≤ this value (low-health moments) |
| `offset` | integer,null | No | Number of results to skip (pagination) |
| `killstreak_ge` | integer,null | No | Emit when current killstreak (kills without dying) ≥ this value |
| `session_id` | string | Yes | Analysis session ID from open_demo |
| `total_headshots_ge` | integer,null | No | Emit when POV headshot count ≥ this value |
| `total_deaths_ge` | integer,null | No | Emit when POV death count ≥ this value |
| `armor_ge` | integer,null | No | Emit frames where POV armor ≥ this value |
| `total_kills_ge` | integer,null | No | Emit when POV kill count ≥ this value |
| `opponent_name` | string,null | No | Player name for per-opponent thresholds (substring, case-insensitive) |
| `damage_dealt_to_player_ge` | integer,null | No | Emit when damage dealt to opponent_name ≥ this value |
| `limit` | integer,null | No | Maximum number of results (default 20) |
| `time_to_ms` | integer,null | No | Only match frames at or before this server time (ms) |
| `total_damage_received_ge` | integer,null | No | Emit when total damage received by POV ≥ this value |
| `time_from_ms` | integer,null | No | Only match frames at or after this server time (ms) |
| `health_ge` | integer,null | No | Emit frames where POV health ≥ this value (overhealth) |
| `kills_on_player_ge` | integer,null | No | Emit when kills on opponent_name ≥ this value |
| `total_damage_dealt_ge` | integer,null | No | Emit when total damage dealt by POV ≥ this value |

## Pricing

- **Cost:** $0.02/call
- **Balance check:** Use `xpay_balance` to check remaining credits
- Get your API key at [xpay.tools](https://xpay.tools/account/settings/api-keys/) — $5 free credits included

## Related Skills

- [Mcps (all tools)](https://xpay.tools/skills/quakelive/SKILL.md) — 88 tools
- [Add Player](https://xpay.tools/skills/quakelive/add-player/SKILL.md) — $0.00/call
- [Add Raw Snapshot](https://xpay.tools/skills/quakelive/add-raw-snapshot/SKILL.md) — $0.00/call
- [Add Server Command](https://xpay.tools/skills/quakelive/add-server-command/SKILL.md) — $0.00/call
- [Analyze Demo](https://xpay.tools/skills/quakelive/analyze-demo/SKILL.md) — $0.02/call
- [Award Medal](https://xpay.tools/skills/quakelive/award-medal/SKILL.md) — $0.02/call

## Links

- Tool page: https://xpay.tools/quakelive/seek-thresholds/
- Provider: https://xpay.tools/quakelive/
- All tools: https://xpay.tools/explore
