@backstage/plugin-mcp-actions-backend 0.1.14-next.1 → 0.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @backstage/plugin-mcp-actions-backend
|
|
2
2
|
|
|
3
|
+
## 0.1.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ed1be73: Validate each action against the MCP tool schema when responding to `tools/list`, and skip any action that doesn't conform instead of failing the entire response. A single misbehaving action with a malformed input schema will now be logged as a warning and omitted from the tool list, letting the remaining actions continue to be served.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/catalog-client@1.16.0
|
|
10
|
+
- @backstage/backend-plugin-api@1.9.2
|
|
11
|
+
- @backstage/plugin-catalog-node@2.2.2
|
|
12
|
+
|
|
3
13
|
## 0.1.14-next.1
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-mcp-actions-backend",
|
|
3
|
-
"version": "0.1.14
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "backend-plugin",
|
|
6
6
|
"pluginId": "mcp-actions",
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
"test": "backstage-cli package test"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@backstage/backend-plugin-api": "1.9.2
|
|
42
|
-
"@backstage/catalog-client": "1.16.0
|
|
43
|
-
"@backstage/config": "1.3.8",
|
|
44
|
-
"@backstage/errors": "1.3.1",
|
|
45
|
-
"@backstage/plugin-catalog-node": "2.2.2
|
|
46
|
-
"@backstage/types": "1.2.2",
|
|
41
|
+
"@backstage/backend-plugin-api": "^1.9.2",
|
|
42
|
+
"@backstage/catalog-client": "^1.16.0",
|
|
43
|
+
"@backstage/config": "^1.3.8",
|
|
44
|
+
"@backstage/errors": "^1.3.1",
|
|
45
|
+
"@backstage/plugin-catalog-node": "^2.2.2",
|
|
46
|
+
"@backstage/types": "^1.2.2",
|
|
47
47
|
"@cfworker/json-schema": "^4.1.1",
|
|
48
48
|
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
49
49
|
"express": "^4.22.0",
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"zod": "^3.25.76 || ^4.0.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@backstage/backend-defaults": "0.17.3
|
|
56
|
-
"@backstage/backend-test-utils": "1.11.4
|
|
57
|
-
"@backstage/cli": "0.36.3
|
|
55
|
+
"@backstage/backend-defaults": "^0.17.3",
|
|
56
|
+
"@backstage/backend-test-utils": "^1.11.4",
|
|
57
|
+
"@backstage/cli": "^0.36.3",
|
|
58
58
|
"@types/express": "^4.17.6",
|
|
59
59
|
"@types/supertest": "^2.0.8",
|
|
60
60
|
"supertest": "^7.0.0"
|