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

frc-docs-mcp

v1.0.3

Published

MCP server that gives AI coding assistants (Claude Code, Cursor, Windsurf, Claude Desktop) instant access to FRC robotics documentation — WPILib, CTRE Phoenix 6, REV Robotics, Limelight, and AdvantageKit. No API keys needed.

Readme

frc-docs-mcp

An MCP (Model Context Protocol) server that gives AI coding assistants instant access to FRC (FIRST Robotics Competition) documentation. Search and read docs from WPILib, CTRE Phoenix 6, REV Robotics, Limelight, and AdvantageKit — all without leaving your editor.

No API keys required. All 1,272 documentation pages ship pre-indexed with the package.

Documentation Sources

| Library | Pages | Source | |---------|-------|--------| | WPILib | 410 | docs.wpilib.org | | CTRE Phoenix 6 | 110 | v6.docs.ctr-electronics.com | | REV Robotics | 651 | docs.revrobotics.com | | Limelight | 52 | docs.limelightvision.io | | AdvantageKit | 49 | docs.advantagekit.org |

Installation

Claude Code

Run this in your terminal:

claude mcp add frc-docs -- npx -y frc-docs-mcp

Or add it to your project's .mcp.json:

{
  "mcpServers": {
    "frc-docs": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "frc-docs-mcp"]
    }
  }
}

Cursor

Go to Cursor Settings > MCP and add a new server:

{
  "mcpServers": {
    "frc-docs": {
      "command": "npx",
      "args": ["-y", "frc-docs-mcp"]
    }
  }
}

Or add it to your project's .cursor/mcp.json:

{
  "mcpServers": {
    "frc-docs": {
      "command": "npx",
      "args": ["-y", "frc-docs-mcp"]
    }
  }
}

Windsurf

Add to your Windsurf MCP config (~/.codeium/windsurf/mcp_config.json):

{
  "mcpServers": {
    "frc-docs": {
      "command": "npx",
      "args": ["-y", "frc-docs-mcp"]
    }
  }
}

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
  "mcpServers": {
    "frc-docs": {
      "command": "npx",
      "args": ["-y", "frc-docs-mcp"]
    }
  }
}

Any MCP Client

The server runs over stdio. Use any MCP-compatible client with:

npx -y frc-docs-mcp

Tools

search_frc_docs

Search across all FRC documentation libraries.

Parameters:

  • query (string, required) — Search query (e.g., "PID controller", "swerve drive", "motor configuration")
  • library (string, optional) — Filter to a specific library: "WPILib", "CTRE Phoenix 6", "REV Robotics", "Limelight", or "AdvantageKit"
  • limit (number, optional) — Max results to return (1-50, default: 10)

read_documentation

Read the full content of a documentation page by its ID (returned from search results).

Parameters:

  • id (string, required) — The page ID from search results

Example Usage

Once installed, just ask your AI assistant about FRC topics:

  • "How do I configure a swerve drive with CTRE Phoenix 6?"
  • "Show me the WPILib PID controller documentation"
  • "How do I set up a Limelight for AprilTag detection?"
  • "What motors does REV Robotics support?"
  • "How do I use AdvantageKit for logging?"

The AI will automatically search and read the relevant documentation.

Requirements

  • Node.js 18+
  • An MCP-compatible AI client

License

MIT