TTokenySpace
返回 MCP 列表

Coordinalo — Service Business Operations

其他

Official documentation and integration guide for Coordinalo's MCP server — connect any AI agent to scheduling via the Servicialo protocol

1v4.1.1远程托管更新于 2026/4/12
GitHub
0

远程接入地址

https://coordinalo.com/api/mcp

介绍

Scheduling, availability, clients, billing and CRM for appointment-based services.

README

<!-- TODO: Replace with actual Coordinalo logo --> <p align="center"> <img src="https://coordinalo.com/logo.png" alt="Coordinalo" width="200" /> </p> <h1 align="center">Coordinalo MCP Server</h1> <p align="center"> Connect any AI agent to Coordinalo's scheduling platform via MCP </p> <p align="center"> <a href="https://www.npmjs.com/package/@servicialo/mcp-server"><img src="https://img.shields.io/npm/v/@servicialo/mcp-server?label=%40servicialo%2Fmcp-server&color=blue" alt="npm version" /></a> <a href="./LICENSE"><img src="https://img.shields.io/badge/license-Apache--2.0-blue" alt="Apache 2.0 License" /></a> <a href="https://coordinalo.com"><img src="https://img.shields.io/badge/status-Production-brightgreen" alt="Status: Production" /></a> </p>

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>

Authentication

Every request requires:

HeaderValueDescription
AuthorizationBearer <API_KEY>Your API key from coordinalo.com
X-Org-Slugyour-org-slugYour organization identifier

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

Tool Summary

ToolDescriptionKey Params
availability_get_slotsQuery free slots for a provider/serviceorgSlug, providerId?, serviceId?, dateFrom, dateTo
booking_createCreate a new session/appointmentorgSlug, providerId, serviceId, clientId, scheduledAt
booking_listList sessions with filtersorgSlug, status?, providerId?, dateFrom?, dateTo?
booking_getGet a single booking's detailsorgSlug, sessionId
booking_rescheduleMove a booking to a new timeorgSlug, sessionId, newScheduledAt, confirm
booking_cancelCancel a sessionorgSlug, sessionId, reason, confirm
client_listList organization clientsorgSlug, search?
client_getGet client detailsorgSlug, clientId
client_createCreate a new clientorgSlug, name, lastName, email?, phone?
admin_list_providersList active providersorgSlug
service_listList bookable servicesorgSlug
report_dashboardGet org summary metricsorgSlug, date?

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

Documentation

  • Quickstart — Connect and make your first booking in 5 minutes
  • Tool Catalog — Full reference for every available tool
  • Authentication — API keys, org slugs, and auth flow
  • Use Cases — Real-world agent integration patterns

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

评论

加载中…

同类推荐