-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.json
More file actions
56 lines (56 loc) · 1.59 KB
/
server.json
File metadata and controls
56 lines (56 loc) · 1.59 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
{
"$schema": "https://registry.modelcontextprotocol.io/schemas/server.json",
"name": "io.github.CDataSoftware/connectcloud-mcp-server",
"description": "MCP Server for CData Connect AI - Query, manage, and act on data from 300+ enterprise sources",
"author": "CData Software",
"homepage": "https://www.cdata.com/solutions/mcp/",
"repository": {
"url": "https://github.com/CDataSoftware/connectcloud-mcp-server",
"source": "github"
},
"license": "MIT",
"deployments": {
"remotes": [
{
"type": "streamable-http",
"url": "https://mcp.cloud.cdata.com/mcp/",
"headers": [
{
"name": "Authorization",
"description": "Basic auth with Connect Cloud email and PAT (format: Basic email:pat)",
"is_required": true,
"is_secret": true
}
]
}
]
},
"config": {
"required": {
"CDATA_PAT": {
"type": "string",
"description": "CData Connect Cloud Personal Access Token for authentication"
},
"CDATA_BASE_URL": {
"type": "string",
"description": "Base URL for CData Connect Cloud API (default: https://cloud.cdata.com)"
},
"CDATA_DATASOURCE": {
"type": "string",
"description": "Name of the CData Connect Cloud datasource to query"
}
},
"optional": {
"LOG_LEVEL": {
"type": "string",
"description": "Logging level (error, warn, info, debug). Default: info"
}
}
},
"features": {
"tools": true,
"prompts": false,
"resources": false,
"sampling": false
}
}