MCP Catalogs
Home

filesystem vs mcp-server-starrocks

Side-by-side comparison to help you pick between these two MCP servers.

filesystem
by modelcontextprotocol
mcp-server-starrocks
by StarRocks
Stars★ 85,748★ 171
30d uses
Score7748
Official
Categories
File SystemDeveloper ToolsProductivity
DatabaseDeveloper ToolsAI / LLM Tools
LanguageTypeScriptPython
Last committhis monththis month

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

mcp-server-starrocks · Summary

Official MCP server connecting AI assistants to StarRocks databases for SQL execution, data exploration, and visualization.

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

mcp-server-starrocks · Use cases

  • AI assistants querying StarRocks databases to retrieve and analyze business data
  • Automated data exploration and schema understanding for AI systems
  • Generating visual charts from SQL query results directly within AI workflows

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

mcp-server-starrocks · Install

Install the MCP server using uv:

uv add mcp-server-starrocks

Configure in Claude Desktop:

{
  "mcpServers": {
    "mcp-server-starrocks": {
      "url": "http://localhost:8000/mcp"
    }
  }
}

Start the server:

uv run mcp-server-starrocks --mode streamable-http --port 8000
Comparison generated from public README + GitHub signals. Last updated automatically.