An open API service indexing awesome lists of open source software.

https://github.com/morningman/mcp-doris

An MCP server for Apache Doris & VeloDB
https://github.com/morningman/mcp-doris

data-science doris mcp-server

Last synced: 7 months ago
JSON representation

An MCP server for Apache Doris & VeloDB

Awesome Lists containing this project

README

          

# Apache Doris MCP Server

[![smithery badge](https://smithery.ai/badge/@morningman/mcp-doris)](https://smithery.ai/server/@morningman/mcp-doris)

An [MCP server](https://modelcontextprotocol.io/introduction) for [Apache Doris](https://doris.apache.org/).

![Demo](mcp-doris-demo.gif)

## Usage

### Cursor

```
Name: doris
Type: command
Command: DORIS_HOST= DORIS_PORT= DORIS_USER= DORIS_PASSWORD= uv run --with mcp-doris --python 3.13 mcp-doris
```

## Development

### Prerequest

- install [uv](https://docs.astral.sh/uv)

### Run MCP Inspector

```sql
cd /path/to/mcp-doris
uv sync
source .venv/bin/activate
export PYTHONPATH=/path/to/mcp-doris:$PYTHONPATH
env DORIS_HOST= DORIS_PORT= DORIS_USER= DORIS_PASSWORD= mcp dev mcp_doris/mcp_server.py
```

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

## Publish

```
uv build
uv publish
```