@ni-c/mcp-hub 0.5.0 → 0.5.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.5.1] - 2026-08-14
9
+
10
+ ### Added
11
+
12
+ - Listed in the official [MCP Registry](https://registry.modelcontextprotocol.io)
13
+ as `io.github.ni-c/mcp-hub`, with both install paths — the npm package and the
14
+ GHCR image — described as what they are: a Streamable-HTTP server on `/hub`,
15
+ not a stdio process. The ownership proofs (`mcpName` in `package.json`, the
16
+ `io.modelcontextprotocol.server.name` image label) ship with this release,
17
+ and the release workflow now publishes registry updates automatically.
18
+
8
19
  ## [0.5.0] - 2026-08-14
9
20
 
10
21
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ni-c/mcp-hub",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Serve multiple stdio MCP servers from one container: Claude-Code-style mcpServers config, path-based routing, hub meta-tools and a built-in OAuth 2.1 login for Claude Web.",
5
5
  "keywords": [
6
6
  "mcp",
@@ -60,5 +60,6 @@
60
60
  "tsx": "^4.19.0",
61
61
  "typescript": "^7.0.2",
62
62
  "vitest": "^4.1.10"
63
- }
63
+ },
64
+ "mcpName": "io.github.ni-c/mcp-hub"
64
65
  }