Data 360 Legacy MCP Server

The data/data-cloud-queries server lets AI agents query and explore Data 360 objects using SQL. Use this server to build agents that analyze customer data, generate insights, or answer natural-language questions about unified profiles.

This server provides two tools:

  • Data space object discovery
  • SQL query execution

Note: This server provides query-only access to Data 360. For full Connect API access (segments, activations, data streams, transforms), use the Data 360 MCP Server.

  • Data 360 license enabled in your org
  • View Data 360 permission for query access
  • MCP client installed and configured with OAuth authentication

For setup instructions, see Set Up Your Org.

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 Sarah Chen 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:

ParameterTypeRequiredDescription
(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 Query 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:

ParameterTypeRequiredDescription
sqlstringYesA valid SQL query using Query SQL syntax.

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.