From 07e9e62236b61ce0f583deb7fd29b425d9bda8ed Mon Sep 17 00:00:00 2001 From: Bryan Thompson Date: Wed, 11 Mar 2026 13:37:09 -0500 Subject: [PATCH] feat: add Claude Code plugin metadata Add .claude-plugin/plugin.json and .mcp.json to enable listing on the Claude Code plugin directory (https://claude.com/plugins). These two files allow Claude Code users to discover and install the UI5 MCP server via `claude plugin install sap-ui5`. No changes to the MCP server code itself. --- .claude-plugin/plugin.json | 12 ++++++++++++ .mcp.json | 6 ++++++ 2 files changed, 18 insertions(+) create mode 100644 .claude-plugin/plugin.json create mode 100644 .mcp.json diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json new file mode 100644 index 00000000..ad403467 --- /dev/null +++ b/.claude-plugin/plugin.json @@ -0,0 +1,12 @@ +{ + "name": "sap-ui5", + "version": "0.2.8", + "description": "SAPUI5/OpenUI5 MCP server. Create and validate UI5 apps, access API documentation, run UI5 linter, get development guidelines and best practices for UI5 development.", + "author": { + "name": "SAP SE" + }, + "homepage": "https://github.com/UI5/mcp-server", + "repository": "https://github.com/UI5/mcp-server", + "license": "Apache-2.0", + "keywords": ["sap", "ui5", "sapui5", "openui5", "mcp"] +} diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 00000000..50959d50 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,6 @@ +{ + "ui5-mcp": { + "command": "npx", + "args": ["-y", "@ui5/mcp-server"] + } +}