mcp_powerdrill_list_data_sources
Retrieve and filter data sources associated with a specified dataset on the Powerdrill MCP Server, enabling efficient data analysis and insights by managing pagination and status.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datasetId | Yes | The ID of the dataset to list data sources from | |
pageNumber | No | The page number to start listing (default: 1) | |
pageSize | No | The number of items on a single page (default: 10) | |
status | No | Filter data sources by status: synching, invalid, synched (comma-separated for multiple) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"datasetId": {
"description": "The ID of the dataset to list data sources from",
"type": "string"
},
"pageNumber": {
"description": "The page number to start listing (default: 1)",
"type": "number"
},
"pageSize": {
"description": "The number of items on a single page (default: 10)",
"type": "number"
},
"status": {
"description": "Filter data sources by status: synching, invalid, synched (comma-separated for multiple)",
"type": "string"
}
},
"required": [
"datasetId"
],
"type": "object"
}