appcrane-mcp 1.3.2 → 1.3.3
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/README.md +6 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -108,7 +108,7 @@ if yours lives elsewhere.
|
|
|
108
108
|
Bump `version` in `package.json`, commit, then push a matching tag:
|
|
109
109
|
|
|
110
110
|
```bash
|
|
111
|
-
git tag v1.3.
|
|
111
|
+
git tag v1.3.3 && git push origin v1.3.3
|
|
112
112
|
```
|
|
113
113
|
|
|
114
114
|
`.github/workflows/publish.yml` publishes it to npm with **npm Trusted Publishing**: no npm
|
|
@@ -118,6 +118,11 @@ the platform's current `main` before publishing, so a stale `catalog.json` canno
|
|
|
118
118
|
has rotted silently before: 22 tools behind the platform, 35 advertised against 57 real.)
|
|
119
119
|
Run `npm run check:catalog` locally first to find out before CI does.
|
|
120
120
|
|
|
121
|
+
The same tag then lists the version in the official [MCP Registry](https://registry.modelcontextprotocol.io)
|
|
122
|
+
as `io.github.gitayg/appcrane`, also by OIDC. Bump `version` and `packages[0].version` in
|
|
123
|
+
`server.json` together with `package.json`: the workflow refuses a tag that does not match all three.
|
|
124
|
+
(The listing sat at 1.0.0 while npm moved on, until this was automated.)
|
|
125
|
+
|
|
121
126
|
The bundled `catalog.json` is generated from the real tool definitions in the AppCrane platform (`deployhub/server/services/mcpTools.js`) and reflects the AWS-aligned tool vocabulary (`appcrane_set_secret`, `appcrane_get_secret`, `appcrane_cp`, and the `stage` parameter). It is committed so the package ships self-contained.
|
|
122
127
|
|
|
123
128
|
## About AppCrane
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appcrane-mcp",
|
|
3
|
-
"version": "1.3.2",
|
|
4
3
|
"mcpName": "io.github.gitayg/appcrane",
|
|
4
|
+
"version": "1.3.3",
|
|
5
5
|
"description": "Standalone MCP connector for AppCrane \u2014 the self-hosted deployment platform for AI-built apps. Serves the appcrane_* tool catalog for offline introspection and proxies real tool calls to your AppCrane instance.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "MIT",
|