College football data Integration for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with College football data MCP or direct API to fetch live scores, analyze player stats, summarize recent games, and compare teams—all through natural language.
College football data Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Supported Tools

Tools
Advanced Box ScoreTool to retrieve advanced box score metrics for a single college football game.
Advanced Game StatsTool to retrieve advanced team metrics at the game level.
Advanced Season Stats by TeamTool to retrieve advanced season metrics aggregated by team and season.
Betting LinesTool to fetch betting lines and totals by game and provider.
Composite Team TalentTool to fetch composite team talent rankings by season.
Conference Memberships HistoryTool to retrieve historical conference memberships for teams, including years active and division.
Divisions by ConferenceTool to list FBS/FCS conference divisions with active years and metadata.
Get Drive DataTool to retrieve drive-level data and results.
Get Game MediaTool to retrieve game media information and broadcast schedules (TV, radio, web, etc.
Get Games and ResultsTool to retrieve games and results for a given season/week/team.
Get Player Game StatsTool to fetch player statistics at the game level.
Get Team Game StatsTool to fetch team statistics at the game level.
List Coaches and HistoryTool to get coaching records and history.
List ConferencesTool to list all college football conferences.
List FBS TeamsTool to list FBS teams for a given season.
List FCS TeamsTool to list FCS teams for a given season and conference.
List TeamsTool to list college football teams.
List Venues and StadiumsTool to list college football venues with metadata (name, capacity, location, etc.
NFL Draft PicksTool to list NFL Draft picks.
NFL Draft PositionsTool to list NFL draft positions.
NFL Draft TeamsTool to list NFL teams used in draft endpoints.
Play-by-Play DataTool to fetch play-by-play data for college football games.
Play Stats PlayerTool to fetch player-level stats tied to individual plays.
Play Stat TypesTool to fetch all play-level stat type definitions.
Player PPA by GameTool to retrieve player-level PPA/EPA broken down by game.
PPA Player By SeasonTool to fetch player-level PPA/EPA aggregated by season.
Predict Expected Points (EP)Tool to get expected points by down, distance, and field position.
PPA Team By GameTool to retrieve team Predicted Points Added (PPA) by game.
Rankings PollsTool to retrieve weekly human/computer poll rankings.
Elo RatingsTool to retrieve Elo ratings for college football teams.
SP+ RatingsTool to retrieve SP+ team ratings.
SRS RatingsTool to retrieve Simple Rating System (SRS) team ratings.
Recruiting Group DictionaryTool to list recruiting position group aggregations.
Recruiting Transfer PortalTool to retrieve transfer portal entries for a given season.
Returning Production by TeamTool to fetch Bill Connelly–style returning production splits by team and season.
Season Stats PlayerTool to fetch basic season stats aggregated by player and season.
Season Team StatsTool to get basic season stats aggregated by team and season.
Season Types DictionaryTool to list season types.
Team Matchup HistoryTool to retrieve head-to-head team matchup records over a date range.
Team season recordsTool to fetch team season records by year with optional filters.
Get Team RosterTool to fetch roster for a given team and season.

Why Use Composio?

AI Native College football data Integration

  • Supports both College football data MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your College football data data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke College football data access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access College football data
  • Scoped, least privilege access to College football data resources
  • Full audit trail of agent actions to support review and compliance

Connect College football data MCP Tool with your Agent

Python
TypeScript

Install Composio

python
pip install composio claude-agent-sdk
Install the Composio SDK and Claude Agent SDK

Create Tool Router Session

python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
Initialize the Composio client and create a Tool Router session

Connect to AI Agent

python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to College football data tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Get week 3 TV and radio broadcast info for 2023 SEC games')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
Use the MCP server with your AI agent

Connect College football data API Tool with your Agent

Python
TypeScript

Install Composio

python
pip install composio_openai
Install the Composio SDK

Initialize Composio and Create Tool Router Session

python
from openai import OpenAI
from composio import Composio
from composio_openai import OpenAIResponsesProvider

composio = Composio(provider=OpenAIResponsesProvider())
openai = OpenAI()
session = composio.create(user_id='your-user-id')
Import and initialize Composio client, then create a Tool Router session

Execute College football data Tools via Tool Router with Your Agent

python
tools = session.tools
response = openai.responses.create(
  model='gpt-4.1',
  tools=tools,
  input=[{
    'role': 'user',
    'content': 'Show all SEC football games for week 3 of 2023.'
  }]
)
result = composio.provider.handle_tool_calls(
  response=response,
  user_id='your-user-id'
)
print(result)
Get tools from Tool Router session and execute College football data actions with your Agent

Use College football data with any AI Agent Framework

Choose a Framework you want to connect College football data with

OpenAI Agents SDK

OpenAI Agents SDK

Use College football data MCP with OpenAI Agents SDK

Claude Agents SDK

Claude Agents SDK

Use College football data MCP with Claude Agents SDK

Google ADK

Google ADK

Use College football data MCP with Google ADK

Langchain

Langchain

Use College football data MCP with Langchain

AI SDK

AI SDK

Use College football data MCP with AI SDK

Mastra AI

Mastra AI

Use College football data MCP with Mastra AI

LlamaIndex

LlamaIndex

Use College football data MCP with LlamaIndex

CrewAI

CrewAI

Use College football data MCP with CrewAI

Pydantic AI

Pydantic AI

Use College football data MCP with Pydantic AI

Autogen

Autogen

Use College football data MCP with Autogen

Frequently Asked Questions

Do I need my own developer credentials to use College football data with Composio?

Yes, College football data requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Can I use multiple toolkits together?

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Is Composio secure?

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

What if the API changes?

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Used by agents from

Context
ASU
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
ASU
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
ASU
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai

Never worry about agent reliability

We handle tool reliability, observability, and security so you never have to second-guess an agent action.