StarRocks MCP Server provides a standardized interface for AI models to interact with StarRocks databases, enabling querying, table management, and data manipulation through a set of predefined tools. Built with Python and supporting both read-only and write modes, the server allows AI assistants to execute SELECT queries, list tables, describe schemas, and perform write operations like INSERT and CREATE TABLE when not in read-only mode.
暂无评论. 成为第一个评论的人!
登录以参与讨论
Execute a SELECT query on the StarRocks database. Parameters: query (string)
List all tables in the StarRocks database.
Describe the schema of a specific table. Parameters: table_name (string)
Execute an INSERT, UPDATE, or DELETE query on the StarRocks database. Parameters: query (string)
Create a new table in the StarRocks database. Parameters: query (string)