-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathserver.json
More file actions
83 lines (83 loc) · 2.39 KB
/
Copy pathserver.json
File metadata and controls
83 lines (83 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "com.iunera/druid-mcp-server",
"description": "AI-powered MCP server for Apache Druid cluster management and analytic",
"repository": {
"url": "https://github.com/iunera/druid-mcp-server",
"source": "github"
},
"version": "2.0.0",
"packages": [
{
"registryType": "oci",
"identifier": "docker.io/iunera/druid-mcp-server:2.0.0",
"runtimeHint": "docker",
"transport": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e",
"DRUID_ROUTER_URL",
"-e",
"DRUID_COORDINATOR_URL",
"-e",
"DRUID_AUTH_USERNAME",
"-e",
"DRUID_AUTH_PASSWORD",
"-e",
"DRUID_SSL_ENABLED",
"-e",
"DRUID_SSL_SKIP_VERIFICATION",
"iunera/druid-mcp-server:latest"
]
},
"environmentVariables": [
{
"description": "Druid router URL for connecting to the Druid cluster",
"isRequired": true,
"format": "string",
"isSecret": false,
"name": "DRUID_ROUTER_URL"
},
{
"description": "Druid coordinator URL for querying metadata endpoints (optional)",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "DRUID_COORDINATOR_URL"
},
{
"description": "Username for Druid authentication (optional)",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "DRUID_AUTH_USERNAME"
},
{
"description": "Password for Druid authentication (optional)",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "DRUID_AUTH_PASSWORD"
},
{
"description": "Enable SSL/TLS support for Druid connections",
"isRequired": false,
"format": "boolean",
"isSecret": false,
"name": "DRUID_SSL_ENABLED"
},
{
"description": "Skip SSL certificate verification (for development/testing only)",
"isRequired": false,
"format": "boolean",
"isSecret": false,
"name": "DRUID_SSL_SKIP_VERIFICATION"
}
]
}
]
}