streamable-httpApache-2.0updated 4mo ago
Connect any AI agent to Coordinalo's scheduling platform via MCP
Coordinalo — Service Business Operations 能做什么?
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"
}
}
}
}
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:
| 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
- 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
claude-desktop.json— Claude Desktop MCP configcursor-mcp.json— Cursor IDE MCP configbooking-agent.js— Node.js autonomous booking flowavailability-check.py— Python availability checker
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
- Issues — GitHub Issues for bugs and feature requests
- Tool Requests — Use the tool request template to propose new MCP tools
- Website — coordinalo.com
- Servicialo Protocol — github.com/servicialo/mcp-server
License
安装
把 Coordinalo — Service Business Operations 添加到你的客户端。选择你正在使用的那个。
claude mcp add --transport http coordinalo-service-business-operations https://coordinalo.com/api/mcpcodex mcp add coordinalo-service-business-operations --url https://coordinalo.com/api/mcp{
"mcpServers": {
"coordinalo-service-business-operations": {
"url": "https://coordinalo.com/api/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"coordinalo-service-business-operations": {
"type": "http",
"url": "https://coordinalo.com/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"coordinalo-service-business-operations": {
"url": "https://coordinalo.com/api/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"coordinalo-service-business-operations": {
"serverUrl": "https://coordinalo.com/api/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
12 个工具
Coordinalo — Service Business Operations 向已连接的智能体提供 12 个工具。
- availability_get_slots
- Query free slots for a provider/service
- booking_create
- Create a new session/appointment
- booking_list
- List sessions with filters
- booking_get
- Get a single booking's details
- booking_reschedule
- Move a booking to a new time
- booking_cancel
- Cancel a session
- client_list
- List organization clients
- client_get
- Get client details
- client_create
- Create a new client
- admin_list_providers
- List active providers
- service_list
- List bookable services
- report_dashboard
- Get org summary metrics
评分
71 / 100
良好
- 文档25/25
- 维护13/25
- 可信度13/20
- 能力8/15
- 安装体验12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 141 days ago
- Has a release history
- Repository is not archived
- Licensed Apache-2.0
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 12 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 4.1.1最新 | 2026年7月25日 |
| 4.1.0 | 2026年7月25日 |