Bizily MCP API

Model Context Protocol server for integrating AI tools with your Bizily business data. Connect Claude Desktop, ChatGPT, Cursor, and other AI assistants to manage customers, bookings, and more.

Quick Start

Get up and running in under 5 minutes.

Get Started

API Endpoints

GET/api/mcp

Discovery endpoint - returns available resources and tools based on your API key scopes

POST/api/mcp

Execute a resource query or tool action

Example Request

Search customersbash
curl -X POST https://app.bizily.io/api/mcp \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "resource",
    "name": "customers",
    "params": {
      "status": "customer",
      "limit": 10
    }
  }'