loading…
Search for a command to run...
loading…
Enables lead routing, booking link generation, and scheduling management through the ChiliPiper REST API. It allows users to process inbound leads via Concierge
Enables lead routing, booking link generation, and scheduling management through the ChiliPiper REST API. It allows users to process inbound leads via Concierge routers and manage meeting queues directly through MCP-compatible clients.
MCP server for ChiliPiper — route leads, generate booking links, and manage scheduling from Claude Code, Cursor, or any MCP-compatible client.
| Tool | Description |
|---|---|
route_lead |
Route a lead through a Concierge router via the marketing API. Returns a booking calendar URL. |
route_concierge |
Route a lead via the Concierge fire endpoint for inbound routers. |
get_booking_link |
Generate a direct booking link for a queue or meeting type. |
check_config |
Validate your configuration and test API connectivity. |
calendar.chilipiper.com/YOUR-DOMAIN/...)git clone https://github.com/hyypeman/chilipiper-mcp.git
cd chilipiper-mcp
npm install
Add to your project's .mcp.json:
{
"mcpServers": {
"chilipiper": {
"command": "node",
"args": ["/path/to/chilipiper-mcp/index.js"],
"env": {
"CHILIPIPER_API_KEY": "your-api-key",
"CHILIPIPER_DOMAIN": "your-domain"
}
}
}
}
Or use the CLI:
claude mcp add chilipiper \
--command "node /path/to/chilipiper-mcp/index.js" \
--env CHILIPIPER_API_KEY=your-api-key \
--env CHILIPIPER_DOMAIN=your-domain
Use the same stdio configuration — command: "node", args: ["/path/to/index.js"] with the environment variables above.
| Variable | Required | Description |
|---|---|---|
CHILIPIPER_API_KEY |
Yes | Your ChiliPiper REST API key |
CHILIPIPER_DOMAIN |
Yes | Your organization's ChiliPiper domain slug |
Once connected, you can ask your AI assistant things like:
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"chilipiper-mcp": {
"command": "npx",
"args": []
}
}
}