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

vex-mcp-server

v2.0.1

Published

MCP server for VEX Robotics Competition data using RobotEvents API

Readme

VEX MCP Server

NPM Version NPM Downloads License: MIT Node.js Version VEX Robotics

A Model Context Protocol (MCP) server for VEX Robotics Competition data using the RobotEvents API. This server enables Claude Desktop (and other MCP clients) to access comprehensive VEX competition data including teams, events, rankings, and skills scores.

Features

  • search-teams: Search for VEX teams by number, name, organization, or location
  • get-team-info: Get detailed information about a specific team
  • search-events: Search for VEX events by name, date, season, or program level
  • get-event-details: Get detailed information about a specific event
  • get-event-awards: Get award information for VEX events including winners and details
  • get-team-rankings: Get team rankings and performance at events
  • get-skills-scores: Get robot skills scores for teams

🚀 Quick Start (1-Minute Setup!)

Prerequisites

  • Node.js 18.0.0 or higher
  • A RobotEvents API token (free registration required)

⚡ Method 1: NPM Installation (Recommended)

One-line installation:

npm install -g vex-mcp-server

Get your RobotEvents API token:

  1. Visit https://www.robotevents.com/api/v2
  2. Click "Request API Access" and fill out the form
  3. Once approved, copy your JWT token

That's it! 🎉 You can now use vex-mcp-server directly in Claude Desktop.

🛠️ Method 2: Development Installation

For developers who want to modify the code:

  1. Clone the repository:

    git clone https://github.com/yangjack8192/vex-mcp-server.git
    cd vex-mcp-server
  2. Install and build:

    npm install
    npm run build

Usage with Claude Desktop

🎯 Super Simple Configuration (NPM Installation)

Location of config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%/Claude/claude_desktop_config.json

Configuration (NPM version):

{
  "mcpServers": {
    "vex-robotics": {
      "command": "vex-mcp-server",
      "env": {
        "ROBOTEVENTS_TOKEN": "your-actual-jwt-token-here"
      }
    }
  }
}

🛠️ Development Configuration

Configuration (Development version):

{
  "mcpServers": {
    "vex-robotics": {
      "command": "node",
      "args": ["/absolute/path/to/vex-mcp-server/build/index.js"],
      "env": {
        "ROBOTEVENTS_TOKEN": "your-actual-jwt-token-here"
      }
    }
  }
}

📝 Setup Notes:

  • Replace your-actual-jwt-token-here with your real RobotEvents API token
  • Restart Claude Desktop after making configuration changes
  • NPM installation = No paths needed! 🎉

Using the Server

Once configured, you can ask Claude questions like:

  • "Find VEX teams in California"
  • "Search for robotics events in Texas this season"
  • "Get rankings for team 12345 at their last event"
  • "Show me the skills scores for teams at the World Championship"

Supported Programs

  • VRC: VEX Robotics Competition (High School)
  • VIQC: VEX IQ Challenge (Elementary/Middle School)
  • VEXU: VEX U (College)

⚠️ Breaking Changes in v2.0.0

Important: If you're upgrading from v1.x, please note these breaking changes:

  • Removed region parameter from search-events tool (due to format inconsistencies)
  • Removed program parameter from search-events tool (not supported by API)

Migration: Update your queries to use alternative parameters like name, level, or season for event filtering.

API Tools Reference

| Tool | Description | Parameters | |------|-------------|------------| | search-teams | Find teams by number, name, or organization | number, name, organization, program, grade, country | | get-team-info | Get detailed team information | team_id (required) | | search-events | Find events by name, date, or level | name, start, end, season, level, eventTypes | | get-event-details | Get detailed event information | event_id (required) | | get-event-awards | Get award information for events | event_id (required), team, winner | | get-team-rankings | Get team rankings at events | team_id, event_id, season | | get-skills-scores | Get robot skills scores | team_id, event_id, season |

Troubleshooting

Common Issues

"Error: Cannot find module" or "Command failed"

  • Ensure you've run npm run build after installation
  • Check that the path in Claude Desktop config points to the correct build/index.js file

"Authentication failed" or "Invalid token"

  • Verify your RobotEvents API token is correct and active
  • Make sure the token is properly set in environment variables or .env file
  • Check that your API access has been approved by RobotEvents

"No events found" or "Search failed"

  • The server uses a hybrid search approach (web search + API)
  • Some searches may take a few seconds to complete
  • Try different search terms or be more specific

Claude Desktop not recognizing the server

  • Restart Claude Desktop after configuration changes
  • Check the JSON syntax in your configuration file
  • Ensure the file path uses forward slashes, even on Windows

Debug Mode

To see detailed debug logs:

node build/index.js 2>&1 | grep DEBUG

Support

  • NPM Package: https://www.npmjs.com/package/vex-mcp-server
  • Issues: Report bugs at GitHub Issues
  • VEX Community: Discuss at VEX Forum
  • RobotEvents API: Documentation at https://www.robotevents.com/api/v2

Updates

NPM users (recommended):

npm update -g vex-mcp-server

Development users:

git pull origin main
npm run build

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch
  3. Test your changes thoroughly
  4. Submit a pull request

License

This project is licensed under the MIT License - see the LICENSE file for details.