Lokahi MCP Server

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.

Category
Visit Server

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:

  1. You are redirected to Lokahi to log in and grant consent.
  2. After approval, the Worker exchanges the authorization for tokens.
  3. 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):

  1. Authorization: Bearer lok_live_... header (preferred)
  2. ?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)

  1. Go to Claude.ai > Settings > Connectors > Add MCP Server
  2. URL: https://lokahi-mcp.<your-subdomain>.workers.dev/sse
  3. 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 location
  • get_practitioner — Get full profile by slug
  • get_available_dates — Dates with availability in a month
  • get_available_slots — Time slots on a specific date
  • list_modalities — All wellness modalities
  • list_specialties — All specialties

Seeker (authenticated)

  • list_bookings — Your bookings
  • get_booking — Booking details
  • create_booking — Book a session
  • cancel_booking — Cancel a booking
  • reschedule_booking — Reschedule a booking
  • list_favourites — Your favourite practitioners
  • toggle_favourite — Add/remove favourite
  • list_conversations — Your conversations
  • get_messages — Messages in a conversation
  • send_message — Message a practitioner

Practitioner (authenticated + practitioner role)

  • practitioner_dashboard — Dashboard overview
  • list_offerings / create_offering / update_offering / delete_offering
  • list_practitioner_bookings / get_practitioner_booking
  • accept_booking / decline_booking / practitioner_cancel_booking / complete_booking
  • get_availability / update_availability
  • add_availability_override / delete_availability_override
  • list_practitioner_conversations / practitioner_send_message
  • get_practitioner_profile / update_practitioner_profile

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured