drio
Open app

StarRocks MCP Server

Source

Catalog onlyCatalog onlySTDIO

Overview

mcp-server-starrocks is a server application designed to facilitate data processing and management using the StarRocks database.

To use mcp-server-starrocks, clone the repository from GitHub, set up the environment according to the instructions provided in the README, and start the server to manage your data processing tasks.

  • Integration with StarRocks for efficient data handling - Support for real-time data processing - Easy setup and configuration through Python
  1. Managing large datasets for analytics
  2. Real-time data processing for applications
  3. Supporting data-driven decision-making in businesses

Add to your AI client

Use these steps to connect StarRocks MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-starrocks-hagsmand": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-starrocks-hagsmand"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-starrocks-hagsmand": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-starrocks-hagsmand"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-starrocks-hagsmand": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-starrocks-hagsmand"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-starrocks-hagsmand": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-starrocks-hagsmand"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-starrocks-hagsmand": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-starrocks-hagsmand"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-starrocks-hagsmand": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-starrocks-hagsmand"
      ]
    }
  }
}