https://<org>.data.credibledata.com/mcp
.
Core Tools
suggestAnalysis
Converts natural language analysis requests into executable Malloy query code. Parameters:primaryRequest
(required): Natural language descriptionprojectName
(required): Project to search withinpackageName
(optional): Specific package scopesourceName
(optional): Specific data source/tablemodelPath
(optional): Path to specific .malloy model file
project → package → modelPath → sourceName
. You can only specify a right-side parameter if you provide the left-side parameter.
Response: Returns a MalloyQueryResponseDTO
containing:
matchingResults
: Array of query suggestions with generated Malloy query codeentities
: Relevant dimensions, measures, and views you can useprimaryTransactionTable
: The main data sourcenextSteps
: Guidance on how to use the resultsdocs
: Malloy syntax documentation and examples
executeQuery
Executes Malloy queries against data models and returns results. Parameters:projectName
(required): Project containing the modelpackageName
(required): Package containing the modelpath
(required): Path to the .malloy model filequery
(optional): Custom Malloy query codesourceName
(optional): Source name (required with queryName)queryName
(optional): Name of predefined query/view
- Custom Query: Use
query
parameter with generated code from suggestAnalysis - Predefined Query: Use
queryName
andsourceName
for existing views
Discovery Tools
credible_projectList
: Lists all available Credible projectscredible_packageList
: Lists all packages within a specific projectcredible_packageGet
: Lists all models within a specific packagecredible_modelGetText
: Gets the raw text content of a specific model file