Data 360
The data/data-cloud-queries server uses SQL to expose Salesforce Data 360's unified data layer to AI agents. The server provides two tools:
- Data space object discovery
- SQL query execution
Use these server URLs to access the production, sandbox, and scratch versions of the data-cloud-queries server.
- Production:
https://api.salesforce.com/platform/mcp/v1/data/data-cloud-queries - Sandbox/Scratch:
https://api.salesforce.com/platform/mcp/v1/sandbox/data/data-cloud-queries
- "What data is available about {customer name} in Data 360?"
- "Query the unified customer profile for contacts at Acme Corp — show engagement scores and last interaction dates."
- "What are the top 20 accounts by product usage events in the last 30 days?"
- "Show me all customers who received a marketing email last week but haven't opened it."
- "Pull the behavioral data for customer ID cust_abc123 from Data 360."
The data/data-cloud-queries server provides the following tools.
Lists all objects available in the Data 360 data space. Use this information to understand what data is available before you write a query.
Annotations: readOnlyHint: true · openWorldHint: false
Inputs:
| Parameter | Type | Required | Description |
|---|---|---|---|
| (none) | — | — | No parameters required |
Outputs: A list of available entities in the Data 360 data space, with metadata describing each entity's purpose and structure.
Executes a SQL query against the Data 360 data space and returns the first chunk of results with accompanying metadata. This function uses Data 360 SQL syntax. Useful for ad hoc analysis, data exploration, and pulling aggregated data.
Because Data 360 stores large volumes of data, be specific in your WHERE clause and use LIMIT to control result size. The response includes the first chunk of data. Pagination metadata is included for large result sets.
Annotations: readOnlyHint: true · openWorldHint: false
Inputs:
| Parameter | Type | Required | Description |
|---|---|---|---|
sql | string | Yes | A valid SQL query against the Data 360 data space. |
Outputs: Returns the first chunk of query results with metadata describing total result size and pagination details if the result set is larger than one chunk.