npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

cfb-stats-mcp

v1.0.0

Published

MCP server for college football stats — scoreboard, play-by-play, rankings, and advanced analytics via NCAA API and CFBD

Readme

cfb-stats-mcp

MCP server for college football statistics -- scores, rankings, advanced analytics, and historical data from the CFBD API.

Installation

Run directly with npx:

npx cfb-stats-mcp

Or install globally:

npm install -g cfb-stats-mcp
cfb-stats-mcp

Configuration

Requires a CFBD API key. Get one (free tier available) at collegefootballdata.com.

Set the CFBD_API_KEY environment variable:

CFBD_API_KEY=your-key-here npx cfb-stats-mcp

MCP Client Setup

Add to your Claude Desktop configuration (claude_desktop_config.json):

{
  "mcpServers": {
    "cfb-stats": {
      "command": "npx",
      "args": ["-y", "cfb-stats-mcp"],
      "env": {
        "CFBD_API_KEY": "your-key-here"
      }
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | cfbd_status | Check CFBD API connectivity and authentication status | | cfbd_games | Look up college football game results by team and season. Returns scores, dates, venues, and Elo ratings. | | cfbd_box_score | Get traditional box score stats (yards, 3rd down efficiency, turnovers, time of possession) for a team's games | | cfbd_advanced_stats | Get advanced analytics (PPA, success rate, explosiveness, havoc) for a team's games. Combines efficiency metrics with defensive disruption rates. | | cfbd_records | Get a team's season record with overall, conference, home/away, and postseason splits plus expected wins | | cfbd_ratings | Get multi-system ratings (SP+, SRS, Elo, FPI) for a team. Shows headline numbers: overall rating and ranking, offense/defense breakdowns where available. | | cfbd_conference_ratings | Get SP+ ratings for a conference. 'teams' view ranks all conference teams by SP+ overall. 'conference' view shows aggregate conference-level rating. | | cfbd_head_to_head | Get historical head-to-head series data between two teams. Shows all-time series record, last 10 and last 5 results, and venue breakdowns. | | cfbd_season_stats | Get season-wide traditional stat aggregates (yards, turnovers, 3rd down, completions, etc.) for a team. Returns totals/averages organized by category. | | cfbd_season_advanced | Get season-wide advanced analytics for a team: EPA (opponent-adjusted efficiency), PPA (raw predicted points), success rate, havoc, explosiveness, and PPA by down. | | build_glossary | Assemble a proper noun correction glossary from the static football glossary and CFBD roster data for specified teams. Returns formatted correction pairs for transcript correction. |

Resources

The server exposes a Workflow Guide resource (resource:///workflow) that describes the full tool inventory, parameter details, chaining patterns, and recommended workflows. Load this resource to understand how tools work together for analysis tasks.

License

MIT