Workflows
Typical patterns for interacting with Entropy Data through the MCP server.
Discover and query data
The most common workflow: find data, get access, and run queries.
- Search — Use
searchto find relevant data products by keyword - Inspect — Use
fetchto get full details including output ports, schemas, and access status - Get access — Use
request_accessif you don't have active access to the output port - Query — Use
execute_queryto run SQL queries against the data
Example prompts
- "Find all data products related to customer orders"
- "Show me the schema of the sales data product"
- "Query the top 10 customers by revenue from the customer-analytics data product"
Manage data contracts
Create, update, and test data contracts through MCP.
- Get schema — Use
datacontract_schemato retrieve the ODCS JSON Schema - Get contract — Use
datacontract_getto retrieve an existing data contract - Update contract — Use
datacontract_saveto create or update a data contract - Test — Use
datacontract_testto run tests against a server - Review results — Use
datacontract_test_resultsto check test outcomes
Example prompts
- "Get the data contract for the inventory data product and check if all tests pass"
- "Update the description field in the customer-events data contract"
- "Show me the latest test results for the orders data contract"