Lokahi MCP Server
Enables AI assistants to search for wellness practitioners, book sessions, manage offerings, and more via the Lokahi API, with OAuth and API key authentication.
README
Lokahi MCP Server
Remote MCP server for the Lokahi wellness marketplace API, deployed as a Cloudflare Worker.
Lets AI assistants (Claude, ChatGPT, Cursor, etc.) search for practitioners, book sessions, manage offerings, and more — on behalf of authenticated users.
Setup
npm install
KV Namespace
Create the KV namespace for OAuth state storage:
wrangler kv namespace create OAUTH_KV
Copy the output ID and update wrangler.jsonc — replace PLACEHOLDER_KV_ID with the actual namespace ID.
Secrets
Set the shared secret used for the Worker-to-Anvil private handshake (must match the value configured in Anvil):
wrangler secret put ANVIL_OAUTH_SECRET
Development
npm run dev
Deploy
npm run deploy
Authentication
The MCP server supports two authentication methods:
OAuth (recommended for Claude.ai / ChatGPT)
Select OAuth in your connector settings. The Worker handles the full OAuth 2.0 flow automatically:
- You are redirected to Lokahi to log in and grant consent.
- After approval, the Worker exchanges the authorization for tokens.
- Access tokens expire after 1 hour; refresh tokens last 30 days and re-validate with Anvil that the user is still active.
The Worker implements spec-compliant OAuth with PKCE, discovery (/.well-known/oauth-authorization-server), and dynamic client registration (/oauth/register).
API Key (direct — for Claude Desktop, Cursor, Claude Code)
Generate an API key from your Lokahi account at Settings > API Access on app.lokahi.life. Keys start with lok_live_ and are shown once at creation time.
The server accepts the API key in two ways (checked in order):
Authorization: Bearer lok_live_...header (preferred)?apiKey=lok_live_...query parameter (fallback)
Public tools (search, practitioner profiles) work without auth. Seeker and practitioner tools require authentication.
Connecting
Claude.ai (remote MCP)
- Go to Claude.ai > Settings > Connectors > Add MCP Server
- URL:
https://lokahi-mcp.<your-subdomain>.workers.dev/sse - Authentication: select OAuth — the login flow is handled automatically
Claude Desktop / Cursor / Claude Code
Add to your MCP config (e.g. ~/.claude/claude_desktop_config.json):
{
"mcpServers": {
"lokahi": {
"url": "https://lokahi-mcp.<your-subdomain>.workers.dev/sse",
"headers": {
"Authorization": "Bearer lok_live_YOUR_KEY_HERE"
}
}
}
}
ChatGPT (GPT Actions / Connectors)
ChatGPT supports OAuth connectors. Point it at the Worker URL and select OAuth authentication — the discovery endpoint at /.well-known/oauth-authorization-server provides all the configuration automatically.
Alternatively, use the OpenAPI spec directly:
https://app.lokahi.life/_/api/v1/openapi.json
Available Tools
Public (no auth)
search_practitioners— Search by keyword, specialty, or locationget_practitioner— Get full profile by slugget_available_dates— Dates with availability in a monthget_available_slots— Time slots on a specific datelist_modalities— All wellness modalitieslist_specialties— All specialties
Seeker (authenticated)
list_bookings— Your bookingsget_booking— Booking detailscreate_booking— Book a sessioncancel_booking— Cancel a bookingreschedule_booking— Reschedule a bookinglist_favourites— Your favourite practitionerstoggle_favourite— Add/remove favouritelist_conversations— Your conversationsget_messages— Messages in a conversationsend_message— Message a practitioner
Practitioner (authenticated + practitioner role)
practitioner_dashboard— Dashboard overviewlist_offerings/create_offering/update_offering/delete_offeringlist_practitioner_bookings/get_practitioner_bookingaccept_booking/decline_booking/practitioner_cancel_booking/complete_bookingget_availability/update_availabilityadd_availability_override/delete_availability_overridelist_practitioner_conversations/practitioner_send_messageget_practitioner_profile/update_practitioner_profile
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.