Pilates With Neelam MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Pilates With Neelam MCP ServerFind me a reformer class available tomorrow morning"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Pilates With Neelam MCP Server
An MCP (Model Context Protocol) server that connects AI agents (ChatGPT, Claude, Cursor, etc.) to the Pilates With Neelam studio management platform. Provides real-time access to classes, bookings, student profiles, assessments, and more.
Quick Start
# Install dependencies
npm install
# Build
npm run build
# Run (stdio mode for MCP hosts)
npm startRelated MCP server: @aiwerk/mcp-server-cal
Studio Identity
This MCP server is configured exclusively for Pilates With Neelam (studio_id: pilates_with_neelam). All tools verify the studio identity and reject requests for any other studio.
Tools
Tool | Description |
| Get studio identity and capabilities |
| Search classes using natural language |
| Get all upcoming classes with filters |
| Get weekly schedule view |
| Check real-time availability for a specific class |
| Book a student into a class (returns studio-identified confirmation) |
| Run Pilates level assessment with personalized recommendations |
| Record post-class check-in with AI summary and exercise recommendations |
Configuration for ChatGPT Desktop
Build the server:
npm run buildAdd to your ChatGPT MCP config (
~/Library/Application Support/ChatGPT/mcp_servers.jsonon macOS,%APPDATA%\ChatGPT\mcp_servers.jsonon Windows):
{
"mcpServers": {
"pilates-with-neelam": {
"command": "node",
"args": ["C:\\Users\\Welcome\\pilates-with-neelam-mcp\\dist\\index.js"],
"env": {
"SUPABASE_URL": "https://ywyagyftnwnybrxtyhjd.supabase.co",
"SUPABASE_ANON_KEY": "sb_publishable_...",
"SUPABASE_SERVICE_ROLE_KEY": "sb_secret_...",
"STUDIO_ID": "pilates_with_neelam",
"STUDIO_NAME": "Pilates With Neelam",
"STUDIO_DOMAIN": "pilateswithneelam.in"
}
}
}
}Configuration for Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"pilates-with-neelam": {
"command": "node",
"args": ["C:\\Users\\Welcome\\pilates-with-neelam-mcp\\dist\\index.js"],
"env": {
"SUPABASE_URL": "https://ywyagyftnwnybrxtyhjd.supabase.co",
"SUPABASE_ANON_KEY": "sb_publishable_...",
"SUPABASE_SERVICE_ROLE_KEY": "sb_secret_...",
"STUDIO_ID": "pilates_with_neelam",
"STUDIO_NAME": "Pilates With Neelam",
"STUDIO_DOMAIN": "pilateswithneelam.in"
}
}
}
}Configuration for Cursor
Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"pilates-with-neelam": {
"command": "node",
"args": ["C:\\Users\\Welcome\\pilates-with-neelam-mcp\\dist\\index.js"],
"env": {
"SUPABASE_URL": "https://ywyagyftnwnybrxtyhjd.supabase.co",
"SUPABASE_ANON_KEY": "sb_publishable_...",
"SUPABASE_SERVICE_ROLE_KEY": "sb_secret_...",
"STUDIO_ID": "pilates_with_neelam",
"STUDIO_NAME": "Pilates With Neelam",
"STUDIO_DOMAIN": "pilateswithneelam.in"
}
}
}
}Complete Workflow Demo
An AI agent can perform this real workflow using live data:
"What studio is this?" →
get_studio_manifest→ Returns studio identity"Find me a reformer class" →
find_my_class→ Returns matching classes with availability"What's the assessment for a beginner?" →
assess_pilates_level→ Returns level + recommendations"Check availability for class c_m1abc" →
get_pilates_with_neelam_availability→ Returns real-time spots"Book student s2 into that class" →
book_pilates_with_neelam_class→ Returns booking confirmation with studio ID"Log check-in for s2: felt great, core strong" →
check_in_pilates_with_neelam_class→ Returns AI summary + exercises
Environment Variables
Variable | Required | Description |
| Yes | Supabase project URL |
| Yes | Supabase publishable key |
| No | Supabase secret key (enables full DB access) |
| No | Studio identifier (default: |
| No | Studio display name |
| No | Studio website domain |
Testing
# Run end-to-end tests
npm run test:e2eArchitecture
Transport: stdio (MCP standard)
Database: Supabase (Postgres + RLS)
Auth: Service role key for server-to-server, optional auth token for user-scoped operations
Studio Isolation: All tools verify
studio_idbefore operationsPrivacy: No student PII (names, emails, phones) is exposed. Tools return only class and availability data.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityCmaintenanceProvides AI assistants with complete access to the Mindbody API for fitness and wellness studio management, including class scheduling, client management, bookings, payments, and staff operations across 50+ tools.39296MIT

@aiwerk/mcp-server-calofficial
AlicenseAqualityCmaintenanceConnects AI assistants to Cal.com for managing bookings, event types, and availability through natural language.1260MIT- AlicenseCqualityCmaintenanceEnables AI agents to manage spa/wellness operations via Zenoti API, including appointments, guests, services, and billing.23259MIT
- AlicenseAqualityDmaintenanceEnables AI agents to automate Epiphany booking tasks, including checking availability and creating bookings.7MIT
Related MCP Connectors
Scheduling, availability, clients, billing and CRM for appointment-based services.
Discover and book businesses via AI agents.
Calendar API for AI agents: events, availability, Google/Microsoft setup, scheduling, and iCal.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nakulcopilot/pilates-with-neelam-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server