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-mindbody

v1.0.0

Published

MCP connector for Mindbody fitness booking platform

Readme

@striderlabs/mcp-mindbody

MCP (Model Context Protocol) connector for the Mindbody fitness booking platform. Uses Playwright browser automation to interact with Mindbody's web interface.

Tools

| Tool | Description | |------|-------------| | search_classes | Find fitness classes by location, type, and date | | get_schedule | Get a studio's full class schedule by site ID | | book_class | Reserve a spot in a class (requires credentials) | | cancel_booking | Cancel an existing class reservation (requires credentials) | | get_bookings | List all upcoming bookings for the authenticated user | | search_studios | Find Mindbody-listed studios near a location | | get_memberships | View active membership status and remaining visits | | get_appointments | View upcoming personal training/wellness appointments |

Installation

npm install -g @striderlabs/mcp-mindbody

# Install Playwright Chromium browser
npx playwright install chromium

Authentication

Tools that require login (book_class, cancel_booking, get_bookings, get_memberships, get_appointments) need your Mindbody credentials.

Option 1: Environment Variables (recommended)

export MINDBODY_USERNAME="[email protected]"
export MINDBODY_PASSWORD="yourpassword"
export MINDBODY_SITE_ID="12345"  # optional default site

Option 2: Credentials File

Create ~/.config/mcp-mindbody/credentials.json:

{
  "username": "[email protected]",
  "password": "yourpassword",
  "siteId": "12345"
}

The file is created with mode 0600 (owner read-only).

Usage with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "mindbody": {
      "command": "mcp-mindbody",
      "env": {
        "MINDBODY_USERNAME": "[email protected]",
        "MINDBODY_PASSWORD": "yourpassword"
      }
    }
  }
}

Example Prompts

  • "Find yoga classes near Brooklyn tomorrow"
  • "What's the schedule for Mindbody site 12345 this week?"
  • "Book class ID 98765 at site 12345 for me"
  • "Show me my upcoming fitness class bookings"
  • "Cancel booking 54321"
  • "Find CrossFit gyms near 10001"
  • "What memberships do I have active?"
  • "Show my upcoming personal training appointments"

Development

# Install dependencies
npm install

# Build
npm run build

# Run directly
node dist/index.js

Notes

  • Playwright launches a headless Chromium browser for each tool call and closes it after.
  • Stealth headers and human-like input delays are used to reduce bot detection risk.
  • Mindbody's web UI may change; if scraping breaks, open an issue.
  • This connector is not affiliated with Mindbody Inc.

License

MIT