{
  "info": {
    "name": "College Football Data — mcp.ai",
    "description": "REST API for the College Football Data MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/college_football_data",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "college_football_data_advanced_box_score",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/advanced/box/score",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "advanced",
            "box",
            "score"
          ]
        },
        "description": "Retrieves advanced analytics for a single college football game including: - Team metrics: PPA (Predicted Points Added), success rates, rushing efficiency, havoc rates, scoring opportunities - Player ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"gameId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_advanced_game_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/advanced/game/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "advanced",
            "game",
            "stats"
          ]
        },
        "description": "Tool to retrieve advanced team metrics at the game level. Use when detailed offensive and defensive metrics (success rates, explosiveness, havoc) are needed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"week\": 0,\n  \"year\": 0,\n  \"opponent\": \"\",\n  \"seasonType\": \"\",\n  \"excludeGarbageTime\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_advanced_season_stats_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/advanced/season/stats/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "advanced",
            "season",
            "stats",
            "team"
          ]
        },
        "description": "Retrieve advanced season-level team statistics including PPA (Predicted Points Added), success rates, explosiveness, havoc metrics, and rushing/passing efficiency breakdowns. Use this for in-depth tea",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"year\": 0,\n  \"endWeek\": 0,\n  \"startWeek\": 0,\n  \"excludeGarbageTime\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_betting_lines",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/betting/lines",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "betting",
            "lines"
          ]
        },
        "description": "Tool to fetch betting lines and totals by game and provider. Use when you need current or historical betting line data filtered by specific criteria.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"away\": \"\",\n  \"home\": \"\",\n  \"team\": \"\",\n  \"week\": 0,\n  \"year\": 0,\n  \"gameId\": 0,\n  \"conference\": \"\",\n  \"seasonType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_composite_team_talent",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/composite/team/talent",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "composite",
            "team",
            "talent"
          ]
        },
        "description": "Fetches 247Sports composite team talent rankings for a given season. Returns a list of all FBS teams ranked by their composite talent score, which is based on aggregate recruit ratings. Higher scores ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"year\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_conference_memberships_history",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/conference/memberships/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "conference",
            "memberships",
            "history"
          ]
        },
        "description": "Tool to retrieve current conference memberships for college football teams. Returns which teams belong to which conference, optionally filtered by conference. Use to find all teams in a specific confe",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"conference\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_divisions_by_conference",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/divisions/by/conference",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "divisions",
            "by",
            "conference"
          ]
        },
        "description": "Tool to list FBS/FCS conference divisions with active years and metadata. Use after specifying an optional season year to filter active divisions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"year\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_conference_sp",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/conference/sp",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "conference",
            "sp"
          ]
        },
        "description": "Retrieve aggregated historical conference SP+ (Success Rate + Points Per Play) ratings for college football conferences. Use this to get conference-level offensive, defensive, and special teams metric",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"year\": 0,\n  \"conference\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_drive_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/drive/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "drive",
            "data"
          ]
        },
        "description": "Retrieves college football drive-level data including offensive/defensive teams, yards gained, drive results (TD, PUNT, INT, etc.), time elapsed, and scoring information. Use to analyze drive efficien",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"week\": 0,\n  \"year\": 0,\n  \"defense\": \"\",\n  \"offense\": \"\",\n  \"conference\": \"\",\n  \"seasonType\": \"\",\n  \"defenseConference\": \"\",\n  \"offenseConference\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_field_goal_expected_points",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/field/goal/expected/points",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "field",
            "goal",
            "expected",
            "points"
          ]
        },
        "description": "Retrieves field goal expected points values for various field positions and distances. Returns static model data showing expected points for field goal attempts based on distance. Useful for analyzing",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_fpi",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/fpi",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "fpi"
          ]
        },
        "description": "Retrieves historical Football Power Index (FPI) ratings for college football teams. FPI is ESPN's measure that predicts team strength and game outcomes. Use this to get team ratings, efficiency metric",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"year\": 0,\n  \"conference\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_game_havoc_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/game/havoc/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "game",
            "havoc",
            "stats"
          ]
        },
        "description": "Tool to retrieve havoc statistics aggregated by game. Use when you need game-level havoc metrics including DB havoc rate, front seven havoc rate, and total havoc events for offense and defense.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"week\": 0,\n  \"year\": 0,\n  \"opponent\": \"\",\n  \"seasonType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_game_media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/game/media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "game",
            "media"
          ]
        },
        "description": "Retrieve broadcast information for college football games including TV channels, streaming platforms, and radio outlets. Use this to find where games are being broadcast. Returns information about the",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"week\": 0,\n  \"year\": 0,\n  \"mediaType\": \"\",\n  \"conference\": \"\",\n  \"seasonType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_games_and_results",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/games/and/results",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "games",
            "and",
            "results"
          ]
        },
        "description": "Tool to retrieve college American football games and results for a given season/week/team. Use when you need game schedules or outcomes filtered by specific criteria. Covers NCAA only; NFL and other s",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"away\": \"\",\n  \"home\": \"\",\n  \"team\": \"\",\n  \"week\": 0,\n  \"year\": 0,\n  \"conference\": \"\",\n  \"seasonType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_play_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/play/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "play",
            "types"
          ]
        },
        "description": "Tool to fetch all available play types. Use when you need a catalog of play types for filtering or referencing play data.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_player_game_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/player/game/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "player",
            "game",
            "stats"
          ]
        },
        "description": "Fetches detailed player statistics for college football games. Returns individual player stats (passing, rushing, receiving, defensive, kicking, etc.) organized by game and team. Use cases: - Get QB p",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"week\": 0,\n  \"year\": 0,\n  \"gameId\": 0,\n  \"category\": \"\",\n  \"conference\": \"\",\n  \"seasonType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_player_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/player/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "player",
            "usage"
          ]
        },
        "description": "Retrieves player usage data for a given season. Returns usage percentages across different play situations (overall, passing, rushing, by down, etc.). Use this to analyze how frequently players are in",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"year\": 0,\n  \"playerId\": 0,\n  \"position\": \"\",\n  \"conference\": \"\",\n  \"excludeGarbageTime\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_predicted_points_added_by_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/predicted/points/added/by/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "predicted",
            "points",
            "added",
            "by",
            "team"
          ]
        },
        "description": "Tool to retrieve historical team Predicted Points Added (PPA) metrics by season. Use when you need season-level PPA performance data for teams to analyze offensive and defensive efficiency across play",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"year\": 0,\n  \"conference\": \"\",\n  \"excludeGarbageTime\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_pregame_win_probabilities",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pregame/win/probabilities",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pregame",
            "win",
            "probabilities"
          ]
        },
        "description": "Tool to retrieve pregame win probabilities for college football games. Use when you need predictive data about game outcomes before they are played, filtered by season, week, or team.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"week\": 0,\n  \"year\": 0,\n  \"seasonType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_recruits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/recruits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "recruits"
          ]
        },
        "description": "Retrieves player recruiting rankings from the College Football Data API. Returns detailed information about high school, prep school, and junior college recruits including star ratings, composite rati",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"year\": 0,\n  \"state\": \"\",\n  \"position\": \"\",\n  \"classification\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_stats_categories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/stats/categories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "stats",
            "categories"
          ]
        },
        "description": "Tool to fetch all available team statistical categories. Use when you need to discover valid category names for statistical analysis or filtering team stats.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_team_game_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/team/game/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "team",
            "game",
            "stats"
          ]
        },
        "description": "Fetch team-level box score statistics for college football games. Returns detailed game stats including offense (rushing/passing yards, TDs, turnovers), defense (tackles, sacks, interceptions), and sp",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"week\": 0,\n  \"year\": 0,\n  \"gameId\": 0,\n  \"conference\": \"\",\n  \"seasonType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_team_recruiting_rankings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/team/recruiting/rankings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "team",
            "recruiting",
            "rankings"
          ]
        },
        "description": "Retrieve team recruiting rankings from the College Football Data API. Returns composite recruiting rankings based on recruit star ratings and commitments. Use to compare recruiting success across team",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"year\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_teams_ats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/teams/ats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "teams",
            "ats"
          ]
        },
        "description": "Tool to retrieve against-the-spread (ATS) summary by team. Use when you need historical betting performance data showing how teams performed relative to point spreads.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"year\": 0,\n  \"conference\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_user_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "info"
          ]
        },
        "description": "Retrieves information about the authenticated user from the College Football Data API. Returns the user's Patreon subscription level and remaining API calls for rate limit monitoring. Use this to chec",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_get_win_probability",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/win/probability",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "win",
            "probability"
          ]
        },
        "description": "Tool to query play-by-play win probabilities for a specific game. Use when you need detailed probability metrics showing how win likelihood changed throughout the game.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"gameId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_list_coaches_and_history",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/coaches/and/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "coaches",
            "and",
            "history"
          ]
        },
        "description": "Tool to get coaching records and history. Use when you need coaches’ season-by-season data with optional filters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"year\": 0,\n  \"maxYear\": 0,\n  \"minYear\": 0,\n  \"lastName\": \"\",\n  \"firstName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_list_conferences",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/conferences",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "conferences"
          ]
        },
        "description": "Retrieves all college football conferences from the College Football Data API. Returns conferences across all NCAA divisions (FBS, FCS, Division II, Division III). Use this to get conference IDs for f",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_list_fbs_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/fbs/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "fbs",
            "teams"
          ]
        },
        "description": "Tool to list FBS teams for a given season. Use after selecting the season year to retrieve all FBS teams.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"year\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_list_fcs_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/fcs/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "fcs",
            "teams"
          ]
        },
        "description": "Tool to list FCS teams for a given season and conference. Use when you need a list of FCS programs filtered by season year and conference.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"year\": 0,\n  \"conference\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_list_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "teams"
          ]
        },
        "description": "Retrieve a list of college football teams from the CFBD (College Football Data) API. Use this action to: - Get all college football teams (call with no parameters) - Get teams from a specific season (",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"year\": 0,\n  \"conference\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_list_venues_stadiums",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/venues/stadiums",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "venues",
            "stadiums"
          ]
        },
        "description": "Tool to list college football venues with metadata (name, capacity, location, etc.). Use when you need detailed venue information for a specific season.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"year\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_nfl_draft_picks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/nfl/draft/picks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "nfl",
            "draft",
            "picks"
          ]
        },
        "description": "Tool to list NFL Draft picks. Use when you need draft pick data by year, round, team, player, etc.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pick\": 0,\n  \"team\": \"\",\n  \"year\": 0,\n  \"limit\": 0,\n  \"round\": 0,\n  \"offset\": 0,\n  \"school\": \"\",\n  \"overall\": 0,\n  \"position\": \"\",\n  \"conference\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_nfl_draft_positions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/nfl/draft/positions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "nfl",
            "draft",
            "positions"
          ]
        },
        "description": "Retrieves the standardized list of NFL draft positions. Returns all position names and abbreviations used to classify players in NFL drafts. Useful for filtering draft picks by position or understandi",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_nfl_draft_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/nfl/draft/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "nfl",
            "draft",
            "teams"
          ]
        },
        "description": "Tool to list NFL teams used in draft endpoints. Use when preparing to retrieve NFL draft data by team.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_play_by_play_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/play/by/play/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "play",
            "by",
            "play",
            "data"
          ]
        },
        "description": "Tool to fetch play-by-play data for college football games. Use when you need detailed play logs filtered by season, week, team, or game.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"week\": 0,\n  \"year\": 0,\n  \"gameId\": 0,\n  \"defense\": \"\",\n  \"offense\": \"\",\n  \"playType\": \"\",\n  \"conference\": \"\",\n  \"seasonType\": \"\",\n  \"defenseConference\": \"\",\n  \"offenseConference\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_play_stat_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/play/stat/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "play",
            "stat",
            "types"
          ]
        },
        "description": "Tool to fetch all play-level stat type definitions. Use when you need a catalog of available play stat types for filtering or referencing.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_play_stats_player",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/play/stats/player",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "play",
            "stats",
            "player"
          ]
        },
        "description": "Fetch player-level statistics tied to individual plays. Returns detailed stats for each player's contribution to a play (rushes, receptions, completions, etc.). Use this when you need: - Play-by-play ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"week\": 0,\n  \"year\": 0,\n  \"gameId\": 0,\n  \"athleteId\": 0,\n  \"seasonType\": \"\",\n  \"statTypeId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_ppa_player_by_game_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ppa/player/by/game/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ppa",
            "player",
            "by",
            "game",
            "action"
          ]
        },
        "description": "Retrieve player-level PPA (Predicted Points Added) / EPA (Expected Points Added) stats for individual games. PPA measures how many points a player adds/subtracts compared to average performance on sim",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"week\": 0,\n  \"year\": 0,\n  \"playerId\": 0,\n  \"position\": \"\",\n  \"threshold\": \"\",\n  \"excludeGarbageTime\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_ppa_player_by_season",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ppa/player/by/season",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ppa",
            "player",
            "by",
            "season"
          ]
        },
        "description": "Tool to fetch player-level PPA/EPA aggregated by season. Use when you need seasonal PPA metrics for specific players or groups after applying filters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"year\": 0,\n  \"playerId\": 0,\n  \"position\": \"\",\n  \"threshold\": \"\",\n  \"conference\": \"\",\n  \"excludeGarbageTime\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_ppa_predicted_points_ep",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ppa/predicted/points/ep",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ppa",
            "predicted",
            "points",
            "ep"
          ]
        },
        "description": "Get expected points (EP) for all field positions given a specific down and distance scenario. Returns expected points values for yard lines 1-99, useful for analyzing game situations and fourth-down d",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"down\": 0,\n  \"distance\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_ppa_team_by_game",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ppa/team/by/game",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ppa",
            "team",
            "by",
            "game"
          ]
        },
        "description": "Tool to retrieve team Predicted Points Added (PPA) by game. Use when you need team-level PPA metrics for games after filtering by season, week, team, or date.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"week\": 0,\n  \"year\": 0,\n  \"endDate\": \"\",\n  \"startDate\": \"\",\n  \"conference\": \"\",\n  \"seasonType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_rankings_polls",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/rankings/polls",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "rankings",
            "polls"
          ]
        },
        "description": "Retrieve college football poll rankings (AP Top 25, Coaches Poll, Playoff Committee, FCS, Division II/III). Returns weekly rankings including team rank, school name, conference, first-place votes, and",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"week\": 0,\n  \"year\": 0,\n  \"season_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_ratings_elo",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ratings/elo",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ratings",
            "elo"
          ]
        },
        "description": "Tool to retrieve Elo ratings for college football teams. Use when you need historical Elo ratings by season or for a specific team.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"year\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_ratings_sp_plus",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ratings/sp/plus",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ratings",
            "sp",
            "plus"
          ]
        },
        "description": "Retrieve SP+ (Success Rate + Points Per Play) team ratings for college football. SP+ is an advanced tempo- and opponent-adjusted measure of college football efficiency. Use this to get overall team ra",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"year\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_ratings_srs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ratings/srs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ratings",
            "srs"
          ]
        },
        "description": "Retrieves Simple Rating System (SRS) team ratings. SRS measures team strength based on point differential adjusted for strength of schedule. Either year or team parameter must be provided. Use year to",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"year\": 0,\n  \"conference\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_recruiting_group_dictionary",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/recruiting/group/dictionary",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "recruiting",
            "group",
            "dictionary"
          ]
        },
        "description": "Retrieves aggregated college football recruiting data grouped by position. Use this tool to analyze recruiting performance by position group for specific teams or conferences. Returns composite rating",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"endYear\": 0,\n  \"startYear\": 0,\n  \"conference\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_recruiting_transfer_portal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/recruiting/transfer/portal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "recruiting",
            "transfer",
            "portal"
          ]
        },
        "description": "Retrieves NCAA college football transfer portal entries for a given season. Returns player transfer information including origin school, destination school (if committed), position, star rating, trans",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"year\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_returning_production_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/returning/production/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "returning",
            "production",
            "team"
          ]
        },
        "description": "Tool to fetch Bill Connelly–style returning production splits by team and season. Use when evaluating returning offense, defense, and overall production for teams in a given season.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"year\": 0,\n  \"conference\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_search_players",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/players",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "players"
          ]
        },
        "description": "Search for college football players by name. Returns top 100 results matching the search term. Use this action to find players by name and optionally filter by year, team, or position.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"year\": 0,\n  \"position\": \"\",\n  \"searchTerm\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_season_stats_player",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/season/stats/player",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "season",
            "stats",
            "player"
          ]
        },
        "description": "Fetch aggregated season statistics for college football players. Returns individual player stats by category (passing, rushing, receiving, defensive, kicking, etc.) for a specified year. Useful for co",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"year\": 0,\n  \"endWeek\": 0,\n  \"category\": \"\",\n  \"startWeek\": 0,\n  \"conference\": \"\",\n  \"seasonType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_season_stats_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/season/stats/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "season",
            "stats",
            "team"
          ]
        },
        "description": "Tool to get basic season stats aggregated by team and season. Use when you need a summary of team-level statistics for a particular season.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"year\": 0,\n  \"endWeek\": 0,\n  \"startWeek\": 0,\n  \"conference\": \"\",\n  \"seasonType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_season_types_dictionary",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/season/types/dictionary",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "season",
            "types",
            "dictionary"
          ]
        },
        "description": "Retrieve the list of available season types for a specific college football year. Returns types like 'regular', 'postseason', and for certain years 'spring_regular', 'spring_postseason'. Use this to d",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"year\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_team_matchup_history",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/team/matchup/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "team",
            "matchup",
            "history"
          ]
        },
        "description": "Tool to retrieve head-to-head team matchup records over a date range. Use after selecting two FBS teams to compare their matchup history.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team1\": \"\",\n  \"team2\": \"\",\n  \"maxYear\": 0,\n  \"minYear\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_team_records",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/team/records",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "team",
            "records"
          ]
        },
        "description": "Retrieve college football team win-loss records for a specific season. Returns detailed breakdowns including total, conference, home, away, neutral site, regular season, and postseason records. Requir",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"year\": 0,\n  \"limit\": 0,\n  \"offset\": 0,\n  \"division\": \"\",\n  \"conference\": \"\",\n  \"seasonType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "college_football_data_team_roster",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/team/roster",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "team",
            "roster"
          ]
        },
        "description": "Fetches the roster for a college football team for a specific season. Returns player details including name, position, height, weight, jersey number, academic year, and hometown info. Use this to get ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"year\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}