Skip to main content
Glama
danioni

Coordinalo MCP Server

by danioni

Coordinalo is a booking and scheduling SaaS platform. This repository is the official documentation and integration guide for connecting AI agents to Coordinalo via the Model Context Protocol (MCP).

Coordinalo implements the Servicialo open protocol. Any Servicialo-compatible MCP client works out of the box. See Built on Servicialo.

Quick Connect

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "coordinalo": {
      "url": "https://coordinalo.com/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY",
        "X-Org-Slug": "your-org-slug"
      }
    }
  }
}

See examples/claude-desktop.json for a ready-to-paste config.

Cursor IDE

Add to your Cursor MCP settings:

{
  "mcpServers": {
    "coordinalo": {
      "url": "https://coordinalo.com/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY",
        "X-Org-Slug": "your-org-slug"
      }
    }
  }
}

See examples/cursor-mcp.json.

Any MCP Client

Point your MCP client to:

Endpoint: https://coordinalo.com/api/mcp
Auth:     Authorization: Bearer <YOUR_API_KEY>
Header:   X-Org-Slug: <your-org-slug>

Related MCP server: @calmesh/mcp-server

Authentication

Every request requires:

Header

Value

Description

Authorization

Bearer <API_KEY>

Your API key from coordinalo.com

X-Org-Slug

your-org-slug

Your organization identifier

Get your API key at coordinalo.com/settings/api. See docs/authentication.md for full details.

Tool Summary

Tool

Description

Key Params

availability_get_slots

Query free slots for a provider/service

orgSlug, providerId?, serviceId?, dateFrom, dateTo

booking_create

Create a new session/appointment

orgSlug, providerId, serviceId, clientId, scheduledAt

booking_list

List sessions with filters

orgSlug, status?, providerId?, dateFrom?, dateTo?

booking_get

Get a single booking's details

orgSlug, sessionId

booking_reschedule

Move a booking to a new time

orgSlug, sessionId, newScheduledAt, confirm

booking_cancel

Cancel a session

orgSlug, sessionId, reason, confirm

client_list

List organization clients

orgSlug, search?

client_get

Get client details

orgSlug, clientId

client_create

Create a new client

orgSlug, name, lastName, email?, phone?

admin_list_providers

List active providers

orgSlug

service_list

List bookable services

orgSlug

report_dashboard

Get org summary metrics

orgSlug, date?

See docs/tools.md for full parameter docs, response formats, and examples.

Documentation

Examples

Built on Servicialo

Coordinalo implements the Servicialo open protocol — an open-source MCP server specification for service scheduling platforms. This means:

  • Any Servicialo-compatible client works with Coordinalo without modification

  • Tool names and parameters follow the Servicialo spec

  • Other platforms implementing Servicialo share the same interface, so your agent code is portable

The @servicialo/mcp-server npm package defines the protocol. Coordinalo hosts a production instance at https://coordinalo.com/api/mcp.

Community & Support

License

Apache 2.0

A
license - permissive license
-
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Connect any AI agent to 11+ social platforms: schedule, publish & track posts via hosted MCP.

  • AI-native scheduling: check availability, book meetings, cancel and reschedule via MCP

  • Phone, SMS & email for AI agents — one remote MCP endpoint, OAuth login, zero install.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/danioni/coordinalo-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server