Build AI agents on your business data
Connect Salesforce, Workday, HubSpot, NetSuite, and hundreds of sources to Claude, ChatGPT, and any agent framework, through one managed data layer and MCP server.
import cdata_connect_ai
conn = cdata_connect_ai.connect(
username="[email protected]",
password="<your_pat>",
)
cur = conn.cursor()
cur.execute("""
SELECT Name, AnnualRevenue
FROM [Salesforce].[Salesforce].[Account]
WHERE Industry = 'Healthcare'
LIMIT 10
""")
for row in cur.fetchall():
print(row)
"mcpServers": {
"cdata-connect-ai": {
"url": "https://mcp.cloud.cdata.com/mcp",
"headers": {
"Authorization": "Basic <Base64(email:PAT)>"
}
}
}
// Available tools: getCatalogs, getSchemas,
// getTables, getColumns, queryData,
// getProcedures, executeProcedure
$ curl https://cloud.cdata.com/api/query \
-u "[email protected]:<your_pat>" \
-H "Content-Type: application/json" \
-d '{"query": "SELECT Name, AnnualRevenue FROM [Salesforce].[Salesforce].[Account] WHERE Industry = '\''Healthcare'\'' LIMIT 10"}'
# Response: streaming JSON with schema + rows
# Same endpoint for Workday, HubSpot, NetSuite,
# and hundreds of other connected sources.
Quickstart
Three paths into the platform. Start where it fits your day.
By AI surface
Framework-specific patterns for connecting AI tools to your business data.
By source
Source-specific guides covering auth, schema, common objects, and known quirks.
What are you building?
Pick a source and an AI surface. We’ll route you to the right tutorial.
- ADP
- API
- Act CRM
- Act-On
- Active Directory
- ActiveCampaign
- Acumatica ERP
- Adobe Analytics
- Adobe Commerce
- Airtable
- Amazon Athena
- Amazon DynamoDB
- Amazon Marketplace
- Amazon Redshift
- Amazon S3
- Apache Avro
- Apache Cassandra
- Apache CouchDB
- Apache HBase
- Apache Hive
- Apache Impala
- Apache Phoenix
- Apache Spark SQL
- Asana
- Atlassian Confluence
- Atlassian Jira
- Authorize.Net
- Avalara AvaTax
- Azure Analysis Services
- Azure Cosmos DB
- Azure Data Lake Storage
- Azure DevOps
- Azure Synapse
- Azure Table Storage
- Basecamp
- BigCommerce
- Blackbaud FE NXT
- Box
- Bullhorn CRM
- CSV/TSV Files
- Certinia
- CockroachDB
- Couchbase
- Cvent
- Databricks
- DocuSign
- Dropbox
- Dynamics 365 Business Central
- Elasticsearch
- EnterpriseDB
- Epicor Kinetic
- Exact Online
- FHIR
- FTP Servers
- Facebook Ads
- Freshdesk
- GitHub
- Gmail
- Google Ad Manager
- Google Ads
- Google AlloyDB
- Google Analytics
- Google BigQuery
- Google Calendar
- Google Campaign Manager 360
- Google Cloud Storage
- Google Contacts
- Google Directory
- Google Drive
- Google Search
- Google Sheets
- Google Spanner
- GraphQL
- Greenhouse
- HCL Domino
- Highrise CRM
- HubSpot
- IBM Cloud Object Storage
- IBM Cloudant
- IBM DB2
- IBM Informix
- JSON
- Jira Assets
- Kintone
- Klaviyo
- Lakebase
- LinkedIn Ads
- MYOB AccountRight
- MailChimp
- MariaDB
- MarkLogic
- Marketo
- Microsoft Ads
- Microsoft Dataverse (CDS)
- Microsoft Dynamics 365
- Microsoft Dynamics CRM
- Microsoft Entra ID
- Microsoft Excel Online
- Microsoft Exchange
- Microsoft Office 365
- Microsoft OneDrive
- Microsoft OneNote
- Microsoft Planner
- Microsoft SQL Server
- Microsoft SharePoint
- Microsoft Teams
- Monday.com
- MongoDB
- MySQL
- Neo4J
- NetSuite CRM & ERP
- NetSuite SuiteAnalytics
- OData
- Odoo ERP
- Okta
- Oracle Database
- Oracle Eloqua
- Oracle Financials Cloud
- Oracle HCM Cloud
- Oracle SCM
- Oracle Sales
- Oracle Service Cloud
- Outreach.io
- PayPal
- Paylocity
- Pipedrive
- Pivotal GreenPlum
- PostgreSQL
- Power BI XMLA
- Presto
- QuickBooks Online
- QuickBooks Time
- Quickbase
- Raisers Edge NXT
- Reckon Accounts Hosted
- Redis
- SAP Ariba Procurement
- SAP Ariba Source
- SAP Business ByDesign
- SAP Business One
- SAP BusinessObjects BI
- SAP Concur
- SAP Fieldglass
- SAP HANA
- SAP Hybris C4C
- SAP Netweaver Gateway
- SAP SuccessFactors
- SAP SuccessFactors LMS
- SAS Data Sets
- SAS XPORT
- SQL Analysis Services
- Sage 200
- Sage Business Cloud Accounting
- Sage Intacct
- Salesforce & Force.com
- Salesforce CRM Analytics
- Salesforce Marketing Cloud
- Salesforce Pardot
- SendGrid
- ServiceNow
- ShipStation
- Shopify
- SingleStore
- Slack
- Smartsheet
- Snapchat Ads
- Snowflake
- Splunk
- Square
- Stripe
- Sugar CRM
- SurveyMonkey
- Sybase
- Sybase IQ
- Tally ERP
- Trello
- Twilio
- Twitter Ads
- Veeva Vault & Vault CRM
- Vertica
- WooCommerce
- WordPress
- Workday
- Xero Accounting
- YouTube Analytics
- Zendesk
- Zoho Books
- Zoho CRM
- Zoho Creator
- Zoho Inventory
- Zoho Projects
- Zuora
- eBay
- Claude
- OpenAI / ChatGPT
- CrewAI
- LangGraph
- LlamaIndex
- Cursor
Don’t see your AI tool? Browse all integration guides for Salesforce →
Production patterns
Beyond the tutorial. What shipping with Connect AI actually looks like.
PATs, secret rotation, and per-user OAuth delegation for agents running without a human in the loop.
Every query, mutation, and tool call is logged. Pipe it into your observability stack or query via API.
Scope each agent to a dedicated workspace so the blast radius of a compromise stays contained.
When agents need to insert or update many rows, batch them in one call instead of looping.
Cut latency and source-side rate-limit pressure by caching reference data on the connection.
Reach on-premises databases and network-restricted SaaS without opening inbound firewall rules.
See the full integration overview and enterprise capabilities.
Full API reference, authentication guides, and configuration details.