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

@striderlabs/mcp-carmax

v1.0.0

Published

MCP server connector for CarMax — search vehicles, get details, find stores, check availability

Downloads

18

Readme

@striderlabs/mcp-carmax

MCP server connector for CarMax — the used car marketplace. Automates CarMax flows via Playwright + Browserbase.

Tools

| Tool | Description | |------|-------------| | search_inventory | Search CarMax inventory by make, model, year, price, and ZIP code | | get_vehicle_details | Get full details (specs, features, photos, Carfax) for a specific vehicle | | schedule_test_drive | Schedule a test drive appointment at CarMax | | get_instant_offer | Get an instant offer for selling your car by VIN or license plate |

Requirements

Setup

Environment Variables

export BROWSERBASE_CDP_URL="wss://connect.browserbase.com?apiKey=YOUR_KEY"

Usage with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "carmax": {
      "command": "npx",
      "args": ["-y", "@striderlabs/mcp-carmax"],
      "env": {
        "BROWSERBASE_CDP_URL": "wss://connect.browserbase.com?apiKey=YOUR_KEY"
      }
    }
  }
}

Tool Details

search_inventory

Search for vehicles by various filters:

search_inventory({
  zip: "90210",
  make: "Toyota",
  model: "Camry",
  year_min: 2019,
  year_max: 2023,
  price_max: 30000,
  limit: 10
})

get_vehicle_details

Get detailed info for a specific vehicle (stock number from search results):

get_vehicle_details({ stock_number: "25123456" })

Returns: title, price, mileage, VIN, location, specs, features, photo URLs, Carfax info.

schedule_test_drive

Schedule a test drive appointment:

schedule_test_drive({
  stock_number: "25123456",
  first_name: "Jane",
  last_name: "Smith",
  email: "[email protected]",
  phone: "5551234567",
  preferred_date: "Saturday",
  preferred_time: "afternoon"
})

get_instant_offer

Get a cash offer for your car:

// By VIN
get_instant_offer({ vin: "1HGCM82633A123456", mileage: 85000, zip: "90210" })

// By license plate
get_instant_offer({ license_plate: "ABC1234", state: "CA", mileage: 85000 })

How It Works

This connector uses Playwright over a Browserbase remote browser session (via CDP) to automate CarMax's website. No unofficial APIs — all data comes directly from CarMax.com.

License

MIT — Strider Labs