-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathserver.json
More file actions
60 lines (60 loc) · 2.52 KB
/
Copy pathserver.json
File metadata and controls
60 lines (60 loc) · 2.52 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.UI5/mcp-server",
"description": "MCP server for SAPUI5/OpenUI5 development",
"repository": {
"url": "https://github.com/UI5/mcp-server",
"source": "github"
},
"version": "0.2.14",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@ui5/mcp-server",
"version": "0.2.14",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"default": "localhost, services.odata.org",
"description": "A comma-separated list of domains that are allowed to be used in various tools, for example: 'localhost, example.com, sub.example.com'. Set to an empty string to allow any domains. For wildcard subdomains, prefix the domain with a dot: '.example.com'. This will match 'www.example.com' but not 'example.com'.",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "UI5_MCP_SERVER_ALLOWED_DOMAINS"
},
{
"description": "Set to any value to disable structured content in the MCP server responses.",
"isRequired": false,
"format": "boolean",
"isSecret": false,
"name": "UI5_MCP_SERVER_RESPONSE_NO_STRUCTURED_CONTENT"
},
{
"description": "Set to any value to disable resources in the MCP server responses, see https://modelcontextprotocol.io/specification/2025-06-18/server/resource. This is useful for clients that do not support resources, see https://modelcontextprotocol.io/clients, such as Cursor or the Gemini CLI.",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "UI5_MCP_SERVER_RESPONSE_NO_RESOURCES"
},
{
"default": "info",
"description": "Internal log level (https://ui5.github.io/cli/stable/pages/Troubleshooting/#changing-the-log-level): 'silent', 'error', 'warn', 'info', 'perf', 'verbose' or 'silly'",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "UI5_LOG_LVL"
},
{
"description": "Directory where the MCP server stores its data, such as cached API references. Defaults to the '.ui5' directory in the user's home directory.",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "UI5_DATA_DIR"
}
]
}
]
}