CloudBlue Connect® exposes its core capabilities through the Model Context Protocol (MCP), an open standard for connecting AI agents to external systems. Once you connect your agent (e.g. Claude, Cursor, Copilot, or your own), it can look up a subscription, file a Helpdesk case, pull the latest price list, or check a fulfillment request — the same actions you’d take in the Connect UI or through the API, but driven by a conversation instead of a screen.
MCP is a standardized way for an AI agent to discover what a system can do and act on it, without you or your developers writing custom integration code for every tool the agent might need to use. Think of it as a USB-C port for AI applications: instead of a different cable (a different bespoke integration) for every device, one standard connector works everywhere it’s supported.
Before MCP, connecting an AI agent to Connect meant writing and maintaining custom code against Connect’s REST API for every workflow you wanted to automate. With MCP, Connect describes its own capabilities in a form your agent already knows how to read, and your agent takes it from there.
Three parts, each doing one job:
| Platform or Component | Description |
|---|---|
| Connect (the MCP server) | Publishes a catalog of tools—things like “list pending fulfillment requests” or “create a price list”—and executes them when called. |
| Your MCP client | The bridge inside your AI tool (Claude Desktop, Claude Code, Cursor, and others) that connects to Connect, authenticates, and hands your agent the tool catalog. |
| Your agent | The assistant you’re actually talking to. It reads your request, decides which Connect tools it needs, and calls them—in sequence, if the task takes more than one step. |
A typical exchange looks like this:
You: "Show me every open Helpdesk case with High priority."
Agent: discovers Connect's Helpdesk tools → calls helpdesk_list_cases
(priority=High, state=open) → reads the result → summarizes it for you
Nothing about this changes what Connect will let an agent do on your behalf. An agent connecting through MCP is bound by the same account permissions as any other integration.
These are starting points, not the limit of what’s possible. Anything exposed as a Connect MCP tool is fair game for your agent to combine into a larger workflow.