← bookiraj.eu

INDIVIDUAL MCP TOOL

cancel_booking

Cancels an existing booking using the cancellation token (UUID from cancelUrl returned by create_booking, or from the confirmation email link ?token=...).

bookiraj.eunone authenticationAvailability not checked

LIVE ENDPOINT

https://bookiraj.eu/mcp

No auth detected

Connect to this endpoint to inspect the live schema for cancel_booking and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name, description or schema mentions credentials.
  • A tool name or description suggests sending messages.

Parent server

bookiraj.eu

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.bookiraj]
url = "https://bookiraj.eu/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "bookiraj": {
      "type": "http",
      "url": "https://bookiraj.eu/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: bookiraj
Remote MCP URL: https://bookiraj.eu/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "bookiraj": {
      "url": "https://bookiraj.eu/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "bookiraj": {
      "type": "http",
      "url": "https://bookiraj.eu/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "bookiraj",
  "transport": "streamable-http",
  "url": "https://bookiraj.eu/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • get_business_info — Returns business info for a Bookiraj client: name, location, timezone, language, list of bookable services (id, name, duration in minutes, capacity = max persons per group slot) and booking rules (minimum lead time, max days ahead).
  • get_availability — Returns per-day availability for a calendar month: {"YYYY-MM-DD": "free"|"full"}.
  • get_free_slots — Returns free start times ("HH:MM", 24h, business local timezone) for one date and service, with slot end time derived from service duration.
  • create_booking — Creates a CONFIRMED booking.