PynathPynath

Model Context Protocol (MCP) Server

The Pynath Booking MCP Server enables AI agents (such as Claude, Cursor, or custom LangChain agents) to query availability, inspect service catalogs, and book appointments directly on behalf of users.

1. Quick Configuration for Claude Desktop / Cursor

Add the following block to your claude_desktop_config.json or Cursor MCP settings file:

{
  "mcpServers": {
    "pynath-booking": {
      "command": "npx",
      "args": ["-y", "@pynath/mcp-server"],
      "env": {
        "PYNATH_API_KEY": "pyn_live_your_secret_api_key"
      }
    }
  }
}

2. Exposed MCP Tools

list_services

Returns active services, durations, and pricing in your catalog.

check_availability

Checks open slots for a date (YYYY-MM-DD) across team calendars.

create_booking

Books an appointment for a service with customer metadata.