read-query
Execute SELECT SQL queries on Apache Pinot databases via the StarTree MCP Server to retrieve and analyze data efficiently.
Instructions
Execute a SELECT query on the Pinot database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | SELECT SQL query to execute |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "SELECT SQL query to execute",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}