by StarRocks
Bridge between AI assistants and StarRocks databases, enabling direct SQL execution, schema exploration, data visualization and detailed overviews without complex client‑side setup.
Provides a Model Context Protocol (MCP) interface that lets AI tools run SQL queries, list databases/tables, fetch schemas, retrieve system metrics, generate Plotly charts and obtain cached overviews of tables or entire databases directly from a StarRocks cluster.
stdio
, or streamable-http
for RESTful JSON calls):
export MCP_TRANSPORT_MODE=streamable-http
uv run mcp-server-starrocks
{
"mcpServers": {
"mcp-server-starrocks": {
"command": "uv",
"args": ["run", "--with", "mcp-server-starrocks", "mcp-server-starrocks"],
"env": {
"STARROCKS_HOST": "localhost",
"STARROCKS_PORT": "9030",
"STARROCKS_USER": "root",
"STARROCKS_PASSWORD": "",
"STARROCKS_DB": "",
"STARROCKS_OVERVIEW_LIMIT": "20000",
"STARROCKS_MYSQL_AUTH_PLUGIN": "mysql_clear_password"
}
}
}
}
/mcp
endpoint (if using streamable-http
) or through the standard input/output stream when embedded in an MCP host.SELECT
) and write (DDL/DML) queries.starrocks:///databases
, starrocks:///{db}/tables
).proc://
paths.query_and_plotly_chart
).stdio
and streamable-http
transport modes./proc
information for health checks and cluster diagnostics.Q: Do I need to install any SDK to call the server?
A: No. All tool APIs accept standard JSON over HTTP (POST to /mcp
) or via stdin/stdout when run in stdio
mode.
Q: Which transport mode should I choose?
A: streamable-http
is recommended for new integrations because it uses plain RESTful JSON and avoids legacy SSE handling.
Q: How does caching work?
A: table_overview
and db_overview
store generated overview text in an in‑memory cache keyed by (database, table)
. The STARROCKS_OVERVIEW_LIMIT
caps the approximate length of each cached overview.
Q: Can I bypass the cache?
A: Yes. Set the refresh
flag to true
in the table_overview
or db_overview
tool request.
Q: What authentication plugins are supported?
A: Use the STARROCKS_MYSQL_AUTH_PLUGIN
environment variable (e.g., mysql_clear_password
) if your StarRocks deployment requires a specific MySQL auth plugin.
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",
"STARROCKS_MYSQL_AUTH_PLUGIN":"mysql_clear_password"
}
}
}
}
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",
"STARROCKS_MYSQL_AUTH_PLUGIN":"mysql_clear_password"
}
}
}
}
Using Streamable HTTP (recommended for integration):
{
"mcpServers": {
"mcp-server-starrocks": {
"url": "http://localhost:8000/mcp"
}
}
}
To start the server in Streamable HTTP mode:
export MCP_TRANSPORT_MODE=streamable-http
uv run mcp-server-starrocks
url
field should point to the Streamable HTTP endpoint of your MCP server (adjust host/port as needed).Note: The
sse
(Server-Sent Events) mode is deprecated and no longer maintained. Please use Streamable HTTP mode for all new integrations.
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
.STARROCKS_MYSQL_AUTH_PLUGIN
: (Optional) Specifies the authentication plugin to use when connecting to the StarRocks FE service. For example, set to mysql_clear_password
if your StarRocks deployment requires clear text password authentication (such as when using certain LDAP or external authentication setups). Only set this if your environment specifically requires it; otherwise, the default auth_plugin is used.MCP_TRANSPORT_MODE
: (Optional) Communication mode that specifies how the MCP Server exposes its services. Available options:
stdio
(default): Communicates through standard input/output, suitable for MCP Host hosting.streamable-http
(Streamable HTTP): Starts as a Streamable HTTP Server, supporting RESTful API calls.sse
: (Deprecated, not recommended) Starts in Server-Sent Events (SSE) streaming mode, suitable for scenarios requiring streaming responses. Note: SSE mode is no longer maintained, it is recommended to use Streamable HTTP mode uniformly.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.Please log in to share your review and rating for this MCP.
Explore related MCPs that share similar capabilities and solve comparable challenges
by googleapis
An MCP server that streamlines database tool development by handling connection pooling, authentication, observability, and secure access, allowing agents to interact with databases via natural language.
by bytebase
Provides a universal gateway that lets MCP‑compatible clients explore and query MySQL, PostgreSQL, SQL Server, MariaDB, and SQLite databases through a single standardized interface.
by designcomputer
Enables secure interaction with MySQL databases via the Model Context Protocol, allowing AI applications to list tables, read contents, and execute queries safely.
by benborla
Provides read‑only access to MySQL databases for large language models, allowing schema inspection and safe execution of SQL queries.
by ClickHouse
Enables AI assistants to run read‑only ClickHouse queries, list databases and tables, and execute embedded chDB queries through an MCP interface.
by chroma-core
Offers an MCP server exposing Chroma's vector database capabilities for LLM applications, supporting collection and document management, multiple embedding functions, and flexible client types such as in‑memory, persistent, HTTP, and cloud.
by kiliczsh
Enables LLMs to interact with MongoDB databases via a standardized interface, offering schema inspection, query execution, aggregation, and write capabilities, with optional read‑only mode and smart ObjectId handling.
by domdomegg
Provides read and write access to Airtable bases for AI systems, enabling inspection of schemas and manipulation of records.
by XGenerationLab
A Model Context Protocol (MCP) server that enables natural language queries to databases