Mindbody MCP Server
Interact with the Mindbody API for managing fitness and wellness studios.
๐ง Mindbody MCP Server
A comprehensive Model Context Protocol (MCP) server that provides AI assistants with complete access to the Mindbody API for fitness and wellness studio management. Perfect for yoga studios, pilates studios, gyms, and wellness centers.
โจ Features
- 50+ Tools covering every aspect of studio operations
- Complete Class Management - View schedules, book clients, manage waitlists, substitute teachers
- Client Management - Add/update clients, track visits, memberships, and balances
- Sales & Commerce - Process payments, sell packages, memberships, and retail products
- Staff Management - View schedules, manage appointments, track availability
- Multi-Location Support - Manage multiple studio locations seamlessly
- High Performance - Built on Bun runtime with intelligent caching
- Type-Safe - Full TypeScript support with comprehensive types
- Dual Transport Support - STDIO for local development, SSE for production deployment
๐ Quick Start
Installation with npx (Node.js)
# Run directly without installation
npx @vespo92/mindbody-mcp
# Or install globally
npm install -g @vespo92/mindbody-mcp
Installation with bunx (Bun - 4x faster)
# Run directly without installation
bunx @vespo92/mindbody-mcp
# Or install globally with Bun
bun install -g @vespo92/mindbody-mcp
Install from GitHub
# Using npx
npx github:vespo92/MindbodyMCP
# Using bunx (recommended for performance)
bunx github:vespo92/MindbodyMCP
# Or clone and run locally
git clone https://github.com/vespo92/MindbodyMCP.git
cd MindbodyMCP
bun install # or npm install
bun run start # or npm start
๐ Prerequisites
- Node.js 18+ or Bun 1.0+
- Mindbody API credentials (API Key, Site ID, Source credentials)
- Claude Desktop or any MCP-compatible client
โ๏ธ Configuration
1. Get Mindbody API Credentials
- Sign up for a Mindbody Developer Account
- Create a new app to get your API credentials
- Note your Site ID (use -99 for sandbox testing)
2. Set Environment Variables
Create a .env
file in your project root:
# Copy the example file
cp .env.example .env
# Edit with your credentials
MINDBODY_API_KEY=your_api_key_here
MINDBODY_SITE_ID=-99 # Your site ID
MINDBODY_SOURCE_NAME=your_source_name
MINDBODY_SOURCE_PASSWORD=your_source_password
# Optional settings
MINDBODY_API_URL=https://api.mindbodyonline.com/public/v6
CACHE_TTL_MINUTES=5
MCP_SERVER_NAME=mindbody-mcp
MCP_SERVER_VERSION=2.0.0
3. Configure Claude Desktop
Add to your Claude Desktop configuration:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"mindbody": {
"command": "bunx",
"args": ["@vespo92/mindbody-mcp"],
"env": {
"MINDBODY_API_KEY": "your_api_key",
"MINDBODY_SITE_ID": "-99",
"MINDBODY_SOURCE_NAME": "your_source_name",
"MINDBODY_SOURCE_PASSWORD": "your_source_password"
}
}
}
}
Or use the GitHub repository directly:
{
"mcpServers": {
"mindbody": {
"command": "bunx",
"args": ["github:vespo92/MindbodyMCP"],
"env": {
"MINDBODY_API_KEY": "your_api_key",
"MINDBODY_SITE_ID": "-99",
"MINDBODY_SOURCE_NAME": "your_source_name",
"MINDBODY_SOURCE_PASSWORD": "your_source_password"
}
}
}
}
๐ ๏ธ Available Tools
The server provides 50+ tools across 7 categories:
๐ Class Management
getClasses
- View all classes with filtersgetClassDescriptions
- List class typesgetClassSchedules
- View recurring schedulesaddClientToClass
- Book clients into classesremoveClientFromClass
- Cancel bookingsgetWaitlistEntries
- Manage waitlistssubstituteClassTeacher
- Handle substitutions
๐ฅ Client Management
getClients
- Search and retrieve clientsaddClient
- Register new clientsupdateClient
- Update client informationgetClientVisits
- View attendance historygetClientMemberships
- Check active membershipsaddClientArrival
- Check-in clientsgetClientAccountBalances
- View account balancesgetClientContracts
- View contracts
๐ฐ Sales & Commerce
getServices
- View available servicesgetPackages
- List class packagesgetProducts
- Browse retail productsgetContracts
- View membership optionscheckoutShoppingCart
- Process purchasespurchaseContract
- Sell memberships
๐ข Site & Locations
getSites
- Get business informationgetLocations
- List all locationsgetPrograms
- View programs offeredgetResources
- Manage resourcesgetSessionTypes
- List session typesgetStaff
- View all staff membersgetTeacherSchedule
- Teacher schedules
๐ Appointments
getStaffAppointments
- View appointmentsaddAppointment
- Book appointmentsupdateAppointment
- Modify appointmentsgetBookableItems
- Find available slotsgetActiveSessionTimes
- Check availabilitygetScheduleItems
- View schedules
๐ Enrollments
getEnrollments
- View courses/workshopsaddClientToEnrollment
- Register for coursesgetClientEnrollments
- View client enrollments
๐ฌ Example Usage in Claude
Once configured, you can ask Claude:
"Show me today's yoga classes"
"Book Sarah Johnson into the 6pm Vinyasa class"
"Who's on the waitlist for tomorrow's Hot Yoga?"
"Add a new client named Jennifer Wilson"
"What's Michael's attendance this month?"
"Process a 10-class package purchase for Amy"
"Find a substitute for Maria's Thursday class"
๐๏ธ Development
Local Development
# Clone the repository
git clone https://github.com/vespo92/MindbodyMCP.git
cd MindbodyMCP
# Install dependencies
bun install # or npm install
# Run in development mode
bun run dev # or npm run dev
# Run tests
bun test # or npm test
# Build for production
bun run build # or npm run build
Project Structure
MindbodyMCP/
โโโ src/
โ โโโ index.ts # Main server entry point
โ โโโ api/ # API client and auth
โ โโโ tools/ # Tool implementations
โ โโโ types/ # TypeScript types
โ โโโ cache/ # Caching layer
โ โโโ utils/ # Utility functions
โโโ tests/ # Test files
โโโ .github/workflows/ # CI/CD pipelines
โโโ CLAUDE.md # Detailed documentation
๐ SSE Deployment (Production)
The server supports SSE (Server-Sent Events) transport for production deployment, enabling web-based clients and remote access.
Quick Start with SSE
# Start with SSE transport
bun run start:sse
# Or with environment variable
MCP_TRANSPORT=sse bun start
# With custom port
bun run src/index.ts --transport sse --port 8080
Docker Deployment
# Using Docker Compose
docker-compose up -d
# Or manually
docker build -t mindbody-mcp .
docker run -d -p 3000:3000 -e MCP_TRANSPORT=sse mindbody-mcp
Production Configuration
Configure via environment variables:
MCP_TRANSPORT=sse
- Enable SSE transportMCP_PORT=3000
- Server portMCP_HOST=0.0.0.0
- Server hostMCP_CORS_ORIGIN=https://yourdomain.com
- CORS configurationMCP_SSL_CERT=/path/to/cert.pem
- SSL certificate (optional)MCP_SSL_KEY=/path/to/key.pem
- SSL private key (optional)
Endpoints
/health
- Health check endpoint/info
- Server information/sse
- SSE event stream for MCP communication
For detailed deployment instructions, see SSE Deployment Guide.
๐งช Testing
# Run all tests
bun test
# Test SSE connection
bun run test:sse
# Test specific tool
bun run test:tool
# Run benchmarks
bun run benchmark
# Type checking
bun run typecheck
๐ฆ Publishing
The package is available on:
- npm: @vespo92/mindbody-mcp
- GitHub Packages: vespo92/MindbodyMCP
๐ Security
- API credentials are stored securely via environment variables
- OAuth 2.0 authentication with automatic token refresh
- No credentials are logged or exposed
- Regular security audits via GitHub Actions
โก Performance
- Bun Runtime: 4x faster startup than Node.js
- Intelligent Caching: 5-minute cache for dynamic data, 60-minute for static
- Automatic Retry: Exponential backoff for failed requests
- Rate Limiting: Respects Mindbody's 2000 requests/hour limit
๐ค Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature
) - Commit your changes (
git commit -m 'Add some AmazingFeature'
) - Push to the branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.
๐ Acknowledgments
- Mindbody API for providing comprehensive fitness studio APIs
- Anthropic MCP SDK for the Model Context Protocol
- Bun for the blazing fast JavaScript runtime
๐ Support
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- Email: vinnie@vespo92.com
๐ Roadmap
- Webhook support for real-time updates
- Advanced reporting and analytics tools
- Multi-site synchronization
- AI-powered recommendations
- Mobile app integration
- GraphQL API layer
Related Servers
Cloudflare
Deploy, configure & interrogate your resources on the Cloudflare developer platform (e.g. Workers/KV/R2/D1)
GCP Tools MCP Server
Automate Google Cloud Platform infrastructure setup and GitHub repository configuration for cloud-native projects.
Shiprocket
Manage Shiprocket logistics, including checking rates, creating and tracking orders, and managing shipments.
Dynatrace
An MCP server for the Dynatrace observability platform.
kubectl MCP Plugin
An MCP server for kubectl, enabling AI assistants to interact with Kubernetes clusters through a standardized protocol.
Remote MCP Server (Authless)
An example of a remote MCP server deployable on Cloudflare Workers without authentication.
CMP MCP Server
An MCP server for CMP API integration, built to run on Cloudflare Workers.
Microsoft Entra ID MCP Server
A Python MCP server for Microsoft Entra ID (Azure AD) directory, user, group, device, sign-in, and security operations via Microsoft Graph.
SharePoint MCP Server
Integrates with Microsoft SharePoint, allowing interaction with documents, folders, and other SharePoint resources.
Wazuh MCP Server
A Rust-based server that integrates the Wazuh SIEM system with MCP-compatible applications.