Interact with StarRocks
The StarRocks MCP Server acts as a bridge between AI assistants and StarRocks databases. It allows for direct SQL execution, database exploration, data visualization via charts, and retrieving detailed schema/data overviews without requiring complex client-side setup.
SELECT
queries (read_query
) and DDL/DML commands (write_query
).starrocks://
resources).proc://
resource path.table_overview
) or entire databases (db_overview
), including column definitions, row counts, and sample data.query_and_plotly_chart
).The MCP server is typically run via an MCP host. Configuration is passed to the host, specifying how to launch the StarRocks MCP server process.
Using uv
with installed package:
{
"mcpServers": {
"mcp-server-starrocks": {
"command": "uv",
"args": [
"run",
"--with",
"mcp-server-starrocks",
"mcp-server-starrocks"
],
"env": {
"STARROCKS_HOST": "default localhost",
"STARROCKS_PORT": "default 9030",
"STARROCKS_USER": "default root",
"STARROCKS_PASSWORD": "default empty",
"STARROCKS_DB": "default empty",
"STARROCKS_OVERVIEW_LIMIT": "default 20000"
}
}
}
}
Using uv
with local directory (for development):
{
"mcpServers": {
"mcp-server-starrocks": {
"command": "uv",
"args": [
"--directory",
"path/to/mcp-server-starrocks", // <-- Update this path
"run",
"mcp-server-starrocks"
],
"env": {
"STARROCKS_HOST": "default localhost",
"STARROCKS_PORT": "default 9030",
"STARROCKS_USER": "default root",
"STARROCKS_PASSWORD": "default empty",
"STARROCKS_DB": "default empty",
"STARROCKS_OVERVIEW_LIMIT": "default 20000"
}
}
}
}
Environment Variables:
STARROCKS_HOST
: (Optional) Hostname or IP address of the StarRocks FE service. Defaults to localhost
.STARROCKS_PORT
: (Optional) MySQL protocol port of the StarRocks FE service. Defaults to 9030
.STARROCKS_USER
: (Optional) StarRocks username. Defaults to root
.STARROCKS_PASSWORD
: (Optional) StarRocks password. Defaults to empty string.STARROCKS_DB
: (Optional) Default database to use if not specified in tool arguments or resource URIs. If set, the connection will attempt to USE
this database. Tools like table_overview
and db_overview
will use this if the database part is omitted in their arguments. Defaults to empty (no default database).STARROCKS_OVERVIEW_LIMIT
: (Optional) An approximate character limit for the total text generated by overview tools (table_overview
, db_overview
) when fetching data to populate the cache. This helps prevent excessive memory usage for very large schemas or numerous tables. Defaults to 20000
.read_query
SHOW
, DESCRIBE
).{ "query": "SQL query string" }
write_query
CREATE
, ALTER
, DROP
), DML (INSERT
, UPDATE
, DELETE
), or other StarRocks command that does not return a ResultSet.{ "query": "SQL command string" }
query_and_plotly_chart
{
"query": "SQL query to fetch data",
"plotly_expr": "Python expression string using 'px' (Plotly Express) and 'df' (DataFrame). Example: 'px.scatter(df, x=\"col1\", y=\"col2\")'"
}
TextContent
: A text representation of the DataFrame and a note that the chart is for UI display.ImageContent
: The generated Plotly chart encoded as a base64 PNG image (image/png
). Returns text error message on failure or if the query yields no data.table_overview
DESCRIBE
), total row count, and sample rows (LIMIT 3
). Uses an in-memory cache unless refresh
is true.{
"table": "Table name, optionally prefixed with database name (e.g., 'db_name.table_name' or 'table_name'). If database is omitted, uses STARROCKS_DB environment variable if set.",
"refresh": false // Optional, boolean. Set to true to bypass the cache. Defaults to false.
}
db_overview
refresh
is true.{
"db": "database_name", // Optional if STARROCKS_DB env var is set.
"refresh": false // Optional, boolean. Set to true to bypass the cache for all tables in the DB. Defaults to false.
}
starrocks:///databases
SHOW DATABASES
text/plain
starrocks:///{db}/{table}/schema
SHOW CREATE TABLE {db}.{table}
text/plain
starrocks:///{db}/tables
SHOW TABLES FROM {db}
text/plain
proc:///{+path}
/proc
. The path
parameter specifies the desired information node.SHOW PROC '/{path}'
text/plain
/frontends
- Information about FE nodes./backends
- Information about BE nodes (for non-cloud native deployments)./compute_nodes
- Information about CN nodes (for cloud native deployments)./dbs
- Information about databases./dbs/<DB_ID>
- Information about a specific database by ID./dbs/<DB_ID>/<TABLE_ID>
- Information about a specific table by ID./dbs/<DB_ID>/<TABLE_ID>/partitions
- Partition information for a table./transactions
- Transaction information grouped by database./transactions/<DB_ID>
- Transaction information for a specific database ID./transactions/<DB_ID>/running
- Running transactions for a database ID./transactions/<DB_ID>/finished
- Finished transactions for a database ID./jobs
- Information about asynchronous jobs (Schema Change, Rollup, etc.)./statistic
- Statistics for each database./tasks
- Information about agent tasks./cluster_balance
- Load balance status information./routine_loads
- Information about Routine Load jobs./colocation_group
- Information about Colocation Join groups./catalog
- Information about configured catalogs (e.g., Hive, Iceberg).None defined by this server.
table_overview
and db_overview
tools utilize an in-memory cache to store the generated overview text.(database_name, table_name)
.table_overview
is called, it checks the cache first. If a result exists and the refresh
parameter is false
(default), the cached result is returned immediately. Otherwise, it fetches the data from StarRocks, stores it in the cache, and then returns it.db_overview
is called, it lists all tables in the database and then attempts to retrieve the overview for each table using the same caching logic as table_overview
(checking cache first, fetching if needed and refresh
is false
or cache miss). If refresh
is true
for db_overview
, it forces a refresh for all tables in that database.STARROCKS_OVERVIEW_LIMIT
environment variable provides a soft target for the maximum length of the overview string generated per table when populating the cache, helping to manage memory usage.Knowledge graph-based persistent memory system
Read-only database access with schema inspection
Database interaction and business intelligence capabilities
Official MCP Server from Atlan which enables you to bring the power of metadata to your AI tools
Query Onchain data, like ERC20 tokens, transaction history, smart contract state.
Read and write access to your Baserow tables.
Embeddings, vector search, document storage, and full-text search with the open-source AI application database
Query your ClickHouse database server.
Interact with the data stored in Couchbase clusters using natural language.
Stock market API made for AI agents