Apache Doris MCP Server

MCP Server For Apache Doris, an MPP-based real-time data warehouse.

Local serverstdioPython

What is the Apache Doris MCP server?

Apache doris mcp server lets Claude, Cursor and other MCP clients work with Apache Doris directly. MCP Server For Apache Doris, an MPP-based real-time data warehouse.

What Apache Doris does

Apache Doris MCP Server exposes read-only Apache Doris capabilities to MCP Hosts and AI agents over MCP 2026-07-28. Version 1.0 replaces a large flat tool surface with eight stable domains and fifty-five progressively disclosed child capabilities, while keeping runtime availability, authorization, input schemas, output schemas, and failure behavior explicit.

Tools it exposes

Once connected, the assistant can call these 13 tools directly:

  • MCP — POST http://127.0.0.1:3000/mcp
  • liveness — GET http://127.0.0.1:3000/live
  • Doris — backed readiness: GET http://127.0.0.1:3000/ready
  • Non — loopback HTTP requires authentication unless an explicit dangerous
  • Domain — Children
  • doris_catalog — 5
  • doris_query — 7
  • doris_cluster — 11
  • doris_pipeline — 5
  • doris_search — 4
  • doris_governance — 8
  • doris_lakehouse — 3
  • doris_semantic — 12

Installing the apache doris mcp server

The server is distributed via PyPI as doris-mcp-server, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

The server reads 5 environment variables: DORIS_HOST, DORIS_PORT, DORIS_USER, DORIS_PASSWORD, DORIS_DATABASE. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Apache Doris sits in that group, and the shape of its toolset — MCP, liveness, Doris among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • With 13 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use Apache Doris.
  • Written in Python.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the apache doris mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
MCPPOST http://127.0.0.1:3000/mcp
livenessGET http://127.0.0.1:3000/live
Dorisbacked readiness: GET http://127.0.0.1:3000/ready
Nonloopback HTTP requires authentication unless an explicit dangerous
DomainChildren
doris_catalog5
doris_query7
doris_cluster11
doris_pipeline5
doris_search4
doris_governance8
doris_lakehouse3
doris_semantic12

How to install the Apache Doris MCP server

{
  "mcpServers": {
    "doris": {
      "command": "uvx",
      "args": ["doris-mcp-server"],
      "env": {
        "DORIS_HOST": "your-value",
        "DORIS_PORT": "your-value",
        "DORIS_USER": "your-value",
        "DORIS_PASSWORD": "your-value",
        "DORIS_DATABASE": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
DORIS_HOSTEndpoint or connection string the server talks to.Optional
DORIS_PORTConfiguration value read at startup.Optional
DORIS_USERConfiguration value read at startup.Optional
DORIS_PASSWORDConfiguration value read at startup.Optional
DORIS_DATABASEConfiguration value read at startup.Optional

Example prompts to try

  • Use Apache Doris to MCP.
  • Use Apache Doris to liveness.
  • Use Apache Doris to Doris.

Frequently asked questions

It connects Apache Doris to MCP-compatible AI assistants such as Claude and Cursor, exposing 13 tools (MCP, liveness, Doris, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Apache Doris directly.