Documentation menu
nfl_role_trend
Pro tierUsage trends
PREFERRED for usage-trend / breakout / fade questions. Returns weekly snap %, target share, carry share, and air-yards share with a trailing 3-week average and the current-week delta vs that average. Use for 'whose role is trending up' or 'is player X's snap share rising'. Default sort is biggest snap-share gain first (snap_pct_delta DESC).
- Minimum tier
- Pro
- Data coverage
- 2013 onwards seasons
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
player | string | Optional | Player name — full ('Justin Jefferson') or short ('J.Jefferson') both accepted. |
gsis_id | string | Optional | Exact GSIS player ID; mutually exclusive with player and gsis_ids. |
gsis_ids | array | Optional | Up to 100 exact GSIS IDs for a roster-level trend query. |
position | string | Optional | Position filter (e.g. WR, RB). |
team | string | Optional | Team abbreviation. |
season | integer | Optional | Exact season year. |
week | integer | Optional | Week number. |
min_snap_pct | number | Optional | Minimum snap % (0–100) for the week. |
limit | integer | Optional | Max rows (default 50, max 500). |
Example request
A Model Context Protocol tools/call over Streamable HTTP. Replace YOUR_API_KEY with a key from your dashboard.
curl -X POST https://mcp.nflmcp.com/mcp \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "nfl_role_trend",
"arguments": {
"team": "KC",
"season": 2024,
"week": 1,
"limit": 10
}
}
}'Example response
Excerpt · lists trimmed{
"role_trend": [
{
"gsis_id": "00-0039894",
"player": "Xavier Worthy",
"position": "WR",
"team": "KC",
"season": 2024,
"week": 1,
"snap_pct": 63,
"target_share_pct": 10.7,
"carry_share_pct": 5,
"air_yards_share_pct": 22.4,
"snap_pct_3wk": 63,
"target_share_pct_3wk": 10.7,
"carry_share_pct_3wk": 5,
"air_yards_share_pct_3wk": 22.4,
"snap_pct_delta": 0,
"target_share_pct_delta": 0,
"carry_share_pct_delta": 0,
"air_yards_share_pct_delta": 0,
"heat": "Cold",
"heat_score": 50,
"heat_confidence": "high"
},
{
"gsis_id": "00-0033526",
"player": "Samaje Perine",
"position": "RB",
"team": "KC",
"season": 2024,
"week": 1,
"snap_pct": 15,
"target_share_pct": 7.1,
"carry_share_pct": 0,
"air_yards_share_pct": -2.4,
"snap_pct_3wk": 15,
"target_share_pct_3wk": 7.1,
"carry_share_pct_3wk": 0,
"air_yards_share_pct_3wk": -2.4,
"snap_pct_delta": 0,
"target_share_pct_delta": 0,
"carry_share_pct_delta": 0,
"air_yards_share_pct_delta": 0,
"heat": "Cold",
"heat_score": 50,
"heat_confidence": "low"
},
{
"gsis_id": "00-0033873",
"player": "Patrick Mahomes",
"position": "QB",
"team": "KC",
"season": 2024,
"week": 1,
"snap_pct": 100,
"target_share_pct": 3.6,
"carry_share_pct": 10,
"air_yards_share_pct": -0.6,
"snap_pct_3wk": 100,
"target_share_pct_3wk": 3.6,
"carry_share_pct_3wk": 10,
"air_yards_share_pct_3wk": -0.6,
"snap_pct_delta": 0,
"target_share_pct_delta": 0,
"carry_share_pct_delta": 0,
"air_yards_share_pct_delta": 0,
"heat": "Cold",
"heat_score": 50,
"heat_confidence": "high"
}
],
"count": 10
}