Catalog
Apache Pinot MCP Server
Officialby startreedata · Python
Explore and query Apache Pinot clusters through MCP.
Explore and query Apache Pinot clusters through MCP.
README not available yet.
Install
Configuration
Environment variables
PINOT_CONTROLLER_URLdefault http://localhost:9000HTTP(S) endpoint of the Pinot Controller.
PINOT_BROKER_URLdefault http://localhost:8000HTTP(S) endpoint of the Pinot Broker.
PINOT_USERNAMEOptional Pinot basic-auth username.
PINOT_PASSWORDsecretOptional Pinot basic-auth password.
PINOT_TOKENsecretOptional Pinot bearer token. Overrides username and password when set.
PINOT_USE_MSQEdefault trueWhether to enable Pinot multi-stage query engine support.
claude_desktop_config.json
{
"mcpServers": {
"mcp-pinot": {
"command": "uvx",
"args": [
"mcp-pinot-server"
],
"env": {
"PINOT_CONTROLLER_URL": "http://localhost:9000",
"PINOT_BROKER_URL": "http://localhost:8000",
"PINOT_USERNAME": "<YOUR_PINOT_USERNAME>",
"PINOT_PASSWORD": "<YOUR_PINOT_PASSWORD>",
"PINOT_TOKEN": "<YOUR_PINOT_TOKEN>",
"PINOT_USE_MSQE": "true"
}
}
}
}