@loop_ouroboros/mcp-hub-lite 1.2.0 → 1.2.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.
- package/CHANGELOG.md +3 -4
- package/README.md +9 -9
- package/dist/server/src/cli/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,15 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## 2026-04-14
|
|
4
4
|
|
|
5
|
+
- **Lint Fix**: Remove unnecessary escape character in CLI entry detection
|
|
6
|
+
- **Docs**: Format README files for release
|
|
7
|
+
- **Version**: Bump version to 1.2.1
|
|
5
8
|
- **CLI Fix**: Fix CLI entry detection for Windows/npm symlink environments
|
|
6
9
|
- **CLI Refactor**: Fix command count and rename mcpToolUseCommand to toolUseCommand
|
|
7
10
|
- **Config Refactor**: Change config loading logs from info to debug level
|
|
8
|
-
- **Docs**: Complete CLAUDE.md documentation for all submodules
|
|
9
|
-
- **Test**: Add unit tests for normalizeToolName function
|
|
10
|
-
- **System Tools Refactor**: Rename list_tools_in_server to list_tools
|
|
11
11
|
- **Core Feature**: Add normalizeToolName for cross-format tool name matching
|
|
12
12
|
- **CLI Feature**: Add tool-use command for MCP server tool operations
|
|
13
|
-
- **Version**: Bump version to 1.1.1
|
|
14
13
|
- **Gateway Feature**: Implement per-request transport mode to fix connection errors
|
|
15
14
|
|
|
16
15
|
## 2026-04-13
|
package/README.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# MCP-HUB-LITE
|
|
2
2
|
|
|
3
|
-
[](./LICENSE)
|
|
4
|
+
[](https://nodejs.org/)
|
|
5
|
+
[](https://www.typescriptlang.org/)
|
|
6
|
+
[](https://vitest.dev/)
|
|
7
|
+
[](https://fastify.io/)
|
|
8
|
+
[](https://vuejs.org/)
|
|
9
|
+
[](https://claude.ai/code)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
12
|
|
|
13
13
|
[中文文档](./README_zh.md)
|
|
14
14
|
|
|
@@ -35,7 +35,7 @@ function isCliEntry() {
|
|
|
35
35
|
// Extract package path suffix for comparison
|
|
36
36
|
// Both paths contain mcp-hub-lite/dist, extract that common suffix
|
|
37
37
|
const getPackagePath = (path) => {
|
|
38
|
-
const match = path.match(/mcp-hub-lite[
|
|
38
|
+
const match = path.match(/mcp-hub-lite[/\\]dist/);
|
|
39
39
|
return match ? match[0] : null;
|
|
40
40
|
};
|
|
41
41
|
const currentPackagePath = getPackagePath(currentPath);
|