ChiliPiper MCP Server

Local setup required. This server has to be cloned and prepared on your machine before you register it in Claude Code.
1

Set the server up locally

Run this once to clone and prepare the server before adding it to Claude Code.

Run in terminal
git clone https://github.com/hyypeman/chilipiper-mcp.git
cd chilipiper-mcp
npm install
2

Register it in Claude Code

After the local setup is done, run this command to point Claude Code at the built server.

Run in terminal
claude mcp add -e "CHILIPIPER_API_KEY=${CHILIPIPER_API_KEY}" -e "CHILIPIPER_DOMAIN=${CHILIPIPER_DOMAIN}" chilipiper -- node "<FULL_PATH_TO_CHILIPIPER_MCP>/dist/index.js"

Replace <FULL_PATH_TO_CHILIPIPER_MCP>/dist/index.js with the actual folder you prepared in step 1.

Required:CHILIPIPER_API_KEYCHILIPIPER_DOMAIN
README.md

Route leads, generate booking links, and manage scheduling via ChiliPiper API.

chilipiper-mcp

MCP server for ChiliPiper — route leads, generate booking links, and manage scheduling from Claude Code, Cursor, or any MCP-compatible client.

Tools

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.

Setup

1. Get your credentials

  • API Key: Get your ChiliPiper REST API key from your ChiliPiper admin settings
  • Domain: Your ChiliPiper organization slug (the part in URLs like calendar.chilipiper.com/YOUR-DOMAIN/...)

2. Install

git clone https://github.com/hyypeman/chilipiper-mcp.git
cd chilipiper-mcp
npm install

3. Configure in your MCP client

Claude Code

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
Cursor / Other MCP clients

Use the same stdio configuration — command: "node", args: ["/path/to/index.js"] with the environment variables above.

Environment Variables

Variable Required Description
CHILIPIPER_API_KEY Yes Your ChiliPiper REST API key
CHILIPIPER_DOMAIN Yes Your organization's ChiliPiper domain slug

Example Usage

Once connected, you can ask your AI assistant things like:

  • "Route this lead to the inbound-demo router: john@acme.com"
  • "Generate a booking link for the sales-team queue"
  • "Check if my ChiliPiper config is working"

License

MIT

Tools (4)

route_leadRoute a lead through a Concierge router via the marketing API and return a booking calendar URL.
route_conciergeRoute a lead via the Concierge fire endpoint for inbound routers.
get_booking_linkGenerate a direct booking link for a queue or meeting type.
check_configValidate your configuration and test API connectivity.

Environment Variables

CHILIPIPER_API_KEYrequiredYour ChiliPiper REST API key
CHILIPIPER_DOMAINrequiredYour organization's ChiliPiper domain slug

Configuration

claude_desktop_config.json
{"mcpServers": {"chilipiper": {"command": "node", "args": ["/path/to/chilipiper-mcp/index.js"], "env": {"CHILIPIPER_API_KEY": "your-api-key", "CHILIPIPER_DOMAIN": "your-domain"}}}}

Try it

Route this lead to the inbound-demo router: john@acme.com
Generate a booking link for the sales-team queue
Check if my ChiliPiper config is working
Route the lead at contact@example.com through the Concierge router

Frequently Asked Questions

What are the key features of ChiliPiper?

Route inbound leads through Concierge routers. Generate direct booking links for specific queues. Manage meeting scheduling workflows. Validate API connectivity and configuration.

What can I use ChiliPiper for?

Automating lead distribution for sales teams directly from an AI chat interface. Generating personalized booking links for prospects during a support or sales conversation. Integrating ChiliPiper scheduling capabilities into custom AI-driven workflows.

How do I install ChiliPiper?

Install ChiliPiper by running: git clone https://github.com/hyypeman/chilipiper-mcp.git && cd chilipiper-mcp && npm install

What MCP clients work with ChiliPiper?

ChiliPiper works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep ChiliPiper docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare