npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@bookla-app/mcp

v1.0.6

Published

MCP server for the Bookla booking platform API. Connects Claude and other AI tools to Bookla for natural language booking management.

Readme

Bookla MCP Server

An MCP (Model Context Protocol) server that connects Claude and other AI tools to the Bookla booking platform API. Enables natural language interactions like "show me today's bookings" or "create a booking for Jane at 3pm tomorrow".

Quick Start

1. Get your API key

Get your API key from your Bookla dashboard under Settings > API Keys.

2. Connect to Claude Desktop

Add this to your Claude Desktop configuration file:

{
  "mcpServers": {
    "bookla": {
      "command": "npx",
      "args": ["bookla-mcp"],
      "env": {
        "BOOKLA_API_KEY": "your-bookla-api-key-here",
        "BOOKLA_API_URL": "https://eu.bookla.com/api/v1"
      }
    }
  }
}

Config file location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

3. Restart Claude Desktop

After saving the config, restart Claude Desktop. You should see the Bookla tools available in the tools menu.

Available Tools

| Tool | Description | |------|-------------| | list_companies | List all companies/locations on your account | | get_company | Get details for a specific company | | list_services | List bookable services (haircuts, lessons, etc.) | | get_service | Get service details (duration, pricing, policy) | | create_service | Create a new bookable service | | delete_service | Delete a service | | list_resources | List resources (staff, rooms, courts) | | get_resource | Get resource details | | create_resource | Create a new resource | | get_available_times | Find available time slots for booking | | get_bookings | List bookings with date/client/service filters | | get_booking | Get full booking details | | create_booking | Create a new booking | | delete_booking | Cancel a booking | | list_clients | List all clients | | create_client | Register a new client | | search_clients | Search clients by email or ID | | delete_client | Delete a client |

Example Conversations

"What bookings do I have today?"

Claude will call list_companies to get your company ID, then get_bookings with today's date range.

"Book a tennis lesson for [email protected] tomorrow at 2pm"

Claude will search_clients for Jane, list_services to find the tennis lesson, get_available_times to verify 2pm is free, then create_booking.

"Show me available slots for massage next Monday"

Claude will find the massage service, then call get_available_times for Monday's date range.

Development

# Install dependencies
npm install

# Run in development mode (with tsx)
npm run dev

# Build TypeScript
npm run build

# Run built version
npm start

API Reference

This server wraps the Bookla REST API. All merchant endpoints use ApiKeyAuth via the Authorization: ApiKey <key> header.

Default base URL: https://eu.bookla.com/api/v1

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | BOOKLA_API_KEY | Yes | — | Your Bookla API key | | BOOKLA_API_URL | No | https://eu.bookla.com/api/v1 | API base URL (change for different regions or staging) |