Claude + Connect AI
Wire Connect AI’s managed MCP server into Claude Desktop, the Claude Agent SDK, or the Messages API. Claude natively discovers and calls tools. No custom integration code required.
from anthropic import Anthropic
client = Anthropic()
response = client.beta.messages.create(
model="claude-opus-4-7",
max_tokens=2048,
mcp_servers=[{
"type": "url",
"url": "https://mcp.cloud.cdata.com/mcp",
"name": "cdata-connect-ai",
"authorization_token": "Basic <BASE64_EMAIL_PAT>",
}],
messages=[{
"role": "user",
"content": "Which accounts have the most open opportunities?"
}],
extra_headers={"anthropic-beta": "mcp-client-2025-04-04"},
)
{
"mcpServers": {
"cdata-connect-ai": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.cloud.cdata.com/mcp",
"--header",
"Authorization: Basic YOUR_BASE64"
]
}
}
}
Developer guide
Full step-by-step guide to building a production-ready Claude agent with Connect AI MCP.
Sources for Claude
Common Claude + source patterns. Tap any combination to see the tutorial.
Sample agents
Two starting points: a one-command scaffold, or a deeper reference implementation.
Generate a working LangChain or Google ADK agent (Anthropic-backed) in one command. Includes Management MCP setup for in-band connection provisioning.
Production-ready Claude Agent SDK chatbot with Connect AI MCP and stateful conversation context.
Evaluating Connect AI for your team? See the full Anthropic integration overview.
Full API reference, authentication guides, and configuration details.