Back to MCP directory
publicPublicdnsLocal runtime

Apache Doris

一个为Apache Doris设计的MCP服务器,提供数据库连接和操作功能。

article

README

🚀 Apache Doris MCP 服务器

Apache Doris MCP 服务器是为 Apache Doris 实现的 MCP 服务器,它能够为相关应用提供强大的支持。

演示

🚀 快速开始

💻 使用示例

基础用法

以下是通过命令行进行配置的示例:

名称: doris
类型: 命令
命令: DORIS_HOST=<doris-host> DORIS_PORT=<端口> DORIS_USER=<doris 用户名> DORIS_PASSWORD=<doris 密码> uv run --with mcp-doris --python 3.13 mcp-doris

🔧 开发

先决条件

需要安装 uv

运行 MCP 检查工具

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=<端口> DORIS_USER=<doris 用户名> DORIS_PASSWORD=<doris 密码> mcp dev mcp_doris/mcp_server.py

然后在浏览器中访问 http://localhost:5173

🚀 发布

uv build
uv publish

smithery badge

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client