Skip to content

Commit 974ccd2

Browse files
committed
Add Apache Doris MCP server
Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ
1 parent 2fd91f8 commit 974ccd2

1 file changed

Lines changed: 112 additions & 0 deletions

File tree

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "org.apache-doris-mcp-uvx",
4+
"name": "Apache Doris (uvx)",
5+
"alias": "doris",
6+
"description": "Interact with Apache Doris, the real-time analytical (OLAP) database. Query data, manage metadata, run SQL, and perform schema analysis through the official Doris MCP server.",
7+
"logo": "https://avatars.githubusercontent.com/u/47359?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"database"
11+
],
12+
"tags": [
13+
"doris",
14+
"apache",
15+
"olap",
16+
"analytics",
17+
"sql",
18+
"database",
19+
"data-warehouse"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "uvx",
24+
"args": [
25+
"doris-mcp-server",
26+
"--transport",
27+
"stdio"
28+
],
29+
"env": {
30+
"DORIS_HOST": "${input:DORIS_HOST}",
31+
"DORIS_PORT": "${input:DORIS_PORT}",
32+
"DORIS_USER": "${input:DORIS_USER}",
33+
"DORIS_PASSWORD": "${input:DORIS_PASSWORD}",
34+
"DORIS_DATABASE": "${input:DORIS_DATABASE}"
35+
},
36+
"metadata": {
37+
"inputs": [
38+
{
39+
"id": "DORIS_HOST",
40+
"label": "Doris Host",
41+
"description": "Hostname or IP address of your Doris FE (frontend) node.",
42+
"type": "text",
43+
"required": true,
44+
"secret": false,
45+
"placeholder": "localhost"
46+
},
47+
{
48+
"id": "DORIS_PORT",
49+
"label": "Doris Query Port",
50+
"description": "MySQL-protocol query port of the Doris FE node.",
51+
"type": "number",
52+
"required": false,
53+
"secret": false,
54+
"default": "9030",
55+
"placeholder": "9030"
56+
},
57+
{
58+
"id": "DORIS_USER",
59+
"label": "Doris User",
60+
"description": "Username used to authenticate to Doris.",
61+
"type": "text",
62+
"required": true,
63+
"secret": false,
64+
"default": "root",
65+
"placeholder": "root"
66+
},
67+
{
68+
"id": "DORIS_PASSWORD",
69+
"label": "Doris Password",
70+
"description": "Password for the Doris user. Leave empty for instances configured without a password.",
71+
"type": "text",
72+
"required": false,
73+
"secret": true,
74+
"placeholder": "********"
75+
},
76+
{
77+
"id": "DORIS_DATABASE",
78+
"label": "Doris Database",
79+
"description": "Default database to connect to. Defaults to information_schema if not set.",
80+
"type": "text",
81+
"required": false,
82+
"secret": false,
83+
"placeholder": "information_schema"
84+
}
85+
]
86+
}
87+
},
88+
"auth": {
89+
"type": "optional_api_key",
90+
"instructions": "Provide Doris connection details. The password is optional for instances configured without authentication."
91+
},
92+
"contributor": {
93+
"name": "Apache Doris",
94+
"github": "apache",
95+
"url": "https://doris.apache.org"
96+
},
97+
"links": {
98+
"repository": "https://github.com/apache/doris-mcp-server",
99+
"homepage": "https://doris.apache.org",
100+
"documentation": "https://github.com/apache/doris-mcp-server#readme"
101+
},
102+
"platforms": [
103+
"all"
104+
],
105+
"capabilities": {
106+
"tools": true,
107+
"resources": false,
108+
"prompts": false,
109+
"read_only_mode": false
110+
},
111+
"changelog_url": "https://github.com/apache/doris-mcp-server/releases"
112+
}

0 commit comments

Comments
 (0)