Apache Doris MCP Server

by morningman

15 stars
437 downloads
Not rated
GitHub Website

About

It is an MCP server that provides a bridge between the Model Context Protocol (MCP) and Apache Doris, a real-time analytical database. It allows users to integrate Doris into MCP-compatible tools such as

Details

Author
morningman
GitHub stars
15
Downloads
437
Categories
Other

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Apache Doris MCP Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

{
  "mcpServers": {
    "doris": {
      "command": "uv",
      "args": [
        "run",
        "--with",
        "mcp-doris",
        "--python",
        "3.13",
        "mcp-doris"
      ],
      "env": {
        "DORIS_HOST": "",
        "DORIS_PORT": "",
        "DORIS_USER": "",
        "DORIS_PASSWORD": ""
      }
    }
  }
}

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "apache doris mcp server": {
            "doris": {
                "command": "uv",
                "args": [
                    "run",
                    "--with",
                    "mcp-doris",
                    "--python",
                    "3.13",
                    "mcp-doris"
                ],
                "env": {
                    "DORIS_HOST": "",
                    "DORIS_PORT": "",
                    "DORIS_USER": "",
                    "DORIS_PASSWORD": ""
                }
            }
        }
    }
}

McpServers

{
    "doris": {
        "command": "uv",
        "args": [
            "run",
            "--with",
            "mcp-doris",
            "--python",
            "3.13",
            "mcp-doris"
        ],
        "env": {
            "DORIS_HOST": "",
            "DORIS_PORT": "",
            "DORIS_USER": "",
            "DORIS_PASSWORD": ""
        }
    }
}

Apache Doris MCP Server

smithery badge

An MCP server for Apache Doris.

Demo

Usage

Cursor

Name: doris
Type: command
Command: DORIS_HOST=<doris-host> DORIS_PORT=<port> DORIS_USER=<doris-user> DORIS_PASSWORD=<doris-pwd> uv run --with mcp-doris --python 3.13 mcp-doris

Development

Prerequest

- install uv

Run MCP Inspector

cd /path/to/mcp-doris
uv sync
source .venv/bin/activate
export PYTHONPATH=/path/to/mcp-doris:$PYTHONPATH
env DORIS_HOST=<doris-host> DORIS_PORT=<port> DORIS_USER=<doris-user> DORIS_PASSWORD=<doris-pwd> mcp dev mcp_doris/mcp_server.py

Then visit http://localhost:5173 in web browser.

Publish

uv build
uv publish
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.