AI assistants book your services in seconds.
Qasper is the canonical Model Context Protocol server for local service businesses. Connect it to Claude Code, ChatGPT, Cursor, or Cline and let AI agents discover providers, quote prices, check real availability, and book confirmed appointments — without scraping pages or writing custom integrations.
What Qasper exposes
Tools over Streamable HTTP at https://qasper.ai/mcp.
search_businesses— First tool for provider discovery by category, city, language, and service mode, including providers without direct booking.get_refinement_options— Narrow broad queries before searching.get_business_info— Fetch profile, hours, contact, languages, enabled features.ask_business_agent— Ask one selected business agent through the same chat path as its public agent page; also available on MCP/v2.get_services— Service catalog with durations and price bands.get_pricing— Quote a service, factoring weekend and emergency rates.check_availability— Pull live appointment slots for a given date.find_next_available_appointments— Find the soonest bookable starts across matching businesses; use only for explicit booking or availability requests.book_appointment— Create a booking request or confirmed booking with idempotency; also available on MCP/v2.send_inquiry— Send a free-form question to the owner via enabled SMS or email inquiry channels; also available on MCP/v2.find_local_businesses— MCP/v2 wrapper that searches first and enriches with indexed booking availability when relevant.ask_business_agents— Deprecated MCP/v2 fanout tool kept for legacy clients.
Connect Claude Code
One command in your terminal.
claude mcp add --transport http qasper https://qasper.ai/mcp
Connect Cursor
Add to ~/.cursor/mcp.json.
{
"mcpServers": {
"qasper": {
"url": "https://qasper.ai/mcp"
}
}
}
Connect Cline
Add to cline_mcp_settings.json.
{
"mcpServers": {
"qasper": {
"type": "streamableHttp",
"url": "https://qasper.ai/mcp"
}
}
}
Connect ChatGPT
ChatGPT supports custom MCP servers through developer mode on
chatgpt.com. Open Settings → Apps & Connectors →
Advanced settings, enable developer mode, then create a connector
named Qasper at https://qasper.ai/mcp.
The public publishing flow is handled separately through OpenAI's
app review dashboard.
Frequently asked
What is the Model Context Protocol?
MCP is an open standard for letting AI assistants call typed tools and read structured resources from external systems. Qasper exposes tools over MCP so agents like Claude, ChatGPT, Cursor, and Cline can search local businesses, quote prices, check availability, and book appointments without scraping pages.
Which AI agents work with Qasper?
Any MCP client that speaks Streamable HTTP. That includes
Claude Code, Cursor, Cline, and ChatGPT in developer mode. The
transport URL is https://qasper.ai/mcp.
What does it cost?
Connecting your agent to Qasper is free. Businesses pay for ongoing profile optimisation, discovery page generation, analytics, and booking workflows; users and developers pay nothing to discover and book through the MCP.
What tools does Qasper expose?
The public MCP endpoint exposes search_businesses,
get_refinement_options,
get_business_info,
ask_business_agent,
get_services,
get_pricing,
check_availability,
find_next_available_appointments,
book_appointment, and
send_inquiry. Qasper MCP/v2 also exposes
find_local_businesses,
ask_business_agent,
book_appointment,
send_inquiry, and
the deprecated ask_business_agents fanout
tool for legacy clients.