Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
mcp-server-starrocks
by
hagsmand
Verified
GitHub
Databases
Python
MIT License
Reddit
Discord
Overview
Inspect
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
src
mcp_server_starrocks
src/mcp_server_starrocks/config.py
src/mcp_server_starrocks/__init__.py
src/mcp_server_starrocks/__main__.py
src/mcp_server_starrocks/server.py
from dataclasses import dataclass from typing import Optional @dataclass class Config: """Configuration for the StarRocks MCP server.""" host: str port: int user: str database: str password: Optional[str] = None readonly: bool = False