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
- Host: GitHub
- URL: https://github.com/morningman/mcp-doris
- Owner: morningman
- License: apache-2.0
- Created: 2025-03-07T06:59:22.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-07T14:26:17.000Z (over 1 year ago)
- Last Synced: 2025-11-08T02:19:04.790Z (8 months ago)
- Topics: data-science, doris, mcp-server
- Language: Python
- Homepage: https://doris.apache.org/
- Size: 5.13 MB
- Stars: 15
- Watchers: 1
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- toolsdk-mcp-registry - ❌ mcp-doris
- metorial-index - Apache Doris MCP Server - Connect to Apache Doris for efficient data management and querying, enabling seamless interactions with data sources and enhanced application functionality. (Cloud Services)
README
# Apache Doris MCP Server
[](https://smithery.ai/server/@morningman/mcp-doris)
An [MCP server](https://modelcontextprotocol.io/introduction) for [Apache Doris](https://doris.apache.org/).

## 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
```