hermes-action-bridge 0.2.1 → 0.2.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/CHANGELOG.md +18 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,24 @@ All notable changes to this project are documented here. The format is based on
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to
|
|
5
5
|
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.2.3] - 2026-06-30
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- MCP Registry namespace case: the server is published as
|
|
12
|
+
`io.github.TheBlueHouse75/hermes-action-bridge` (the registry namespace matches the
|
|
13
|
+
GitHub account's exact case), aligning `mcpName` and `server.json` so registry
|
|
14
|
+
publishing succeeds.
|
|
15
|
+
|
|
16
|
+
## [0.2.2] - 2026-06-30
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
|
|
20
|
+
- Official MCP Registry listing: `server.json` manifest and the `mcpName`
|
|
21
|
+
ownership declaration in `package.json`.
|
|
22
|
+
- The release workflow now also publishes the MCP server to `registry.modelcontextprotocol.io`
|
|
23
|
+
via GitHub OIDC (no token), keeping `server.json` in sync with `package.json` automatically.
|
|
24
|
+
|
|
7
25
|
## [0.2.1] - 2026-06-30
|
|
8
26
|
|
|
9
27
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hermes-action-bridge",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Configurable bridge for external agents to delegate actions to Hermes Agent via CLI or MCP.",
|
|
5
|
+
"mcpName": "io.github.TheBlueHouse75/hermes-action-bridge",
|
|
5
6
|
"repository": {
|
|
6
7
|
"type": "git",
|
|
7
8
|
"url": "git+https://github.com/TheBlueHouse75/hermes-action-bridge.git"
|