Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,10 @@ jobs:
run: |
echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' >> ./.npmrc
npm publish --provenance --access public
- name: Install MCP Publisher
run: |
curl -L "https://github.com/modelcontextprotocol/registry/releases/download/v1.0.0/mcp-publisher_1.0.0_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
- name: Login to MCP Registry
run: ./mcp-publisher login github-oidc
- name: Publish to MCP Registry
run: ./mcp-publisher publish
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"bin": {
"ui5mcp": "bin/ui5mcp.js"
},
"mcpName": "io.github.UI5/mcp-server",
"type": "module",
"scripts": {
"start": "tsx src/cli.ts",
Expand Down
9 changes: 8 additions & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@
"hidden": true
}
]
}
},
"extra-files": [
{
"type": "json",
"path": "server.json",
"jsonpath": "$..version"
}
]
}
}
64 changes: 64 additions & 0 deletions server.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
"name": "io.github.UI5/mcp-server",
"description": "A MCP server for UI5",
"status": "active",
"repository": {
"url": "https://github.com/UI5/mcp-server",
"source": "github"
},
"version": "0.1.1",
"packages": [
{
"registry_type": "npm",
"registry_base_url": "https://registry.npmjs.org",
"identifier": "@ui5/mcp-server",
"version": "0.1.1",
"transport": {
"type": "stdio"
},
"environment_variables": [
{
"default": "localhost, services.odata.org",
"description": "A comma-separated list of domains that are allowed to be used in the 'oDataV4Url' parameter of the 'create_ui5_app' tool, 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'.",
"is_required": false,
"format": "string",
"is_secret": false,
"name": "UI5_MCP_SERVER_ALLOWED_ODATA_DOMAINS"
},
{
"default": "false",
"description": "Set to any value to disable structured content in the MCP server responses.",
"is_required": false,
"format": "boolean",
"is_secret": false,
"name": "UI5_MCP_SERVER_RESPONSE_NO_STRUCTURED_CONTENT"
},
{
"default": "false",
"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.",
"is_required": false,
"format": "string",
"is_secret": false,
"name": "UI5_MCP_SERVER_RESPONSE_NO_RESOURCES"
},
{
"default": "info",
"description": "Internal log level, see https://sap.github.io/ui5-tooling/stable/pages/Troubleshooting/#changing-the-log-level): 'silent', 'error', 'warn', 'info', 'perf', 'verbose' or 'silly'",
"is_required": false,
"format": "string",
"is_secret": false,
"name": "UI5_LOG_LVL"
},
{
"default": "The '.ui5' directory in the user's home directory",
"description": "Directory where the MCP server stores its data, such as cached API references.",
"is_required": false,
"format": "string",
"is_secret": false,
"name": "UI5_DATA_DIR"
}
]
}
]
}