Coordinalo MCP Server
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 |
|
| Your API key from coordinalo.com |
|
| 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 |
| Query free slots for a provider/service |
|
| Create a new session/appointment |
|
| List sessions with filters |
|
| Get a single booking's details |
|
| Move a booking to a new time |
|
| Cancel a session |
|
| List organization clients |
|
| Get client details |
|
| Create a new client |
|
| List active providers |
|
| List bookable services |
|
| Get org summary metrics |
|
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
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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