@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 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](https://img.shields.io/badge/license-MIT-080f12?style=flat\&colorA=080f12\&colorB=1fa669)](./LICENSE)
4
- [![Node.js](https://img.shields.io/badge/Node.js-22.x-080f12?style=flat\&logo=nodedotjs\&logoColor=white\&colorA=080f12\&colorB=339933)](https://nodejs.org/)
5
- [![TypeScript](https://img.shields.io/badge/TypeScript-5.x-080f12?style=flat\&logo=typescript\&logoColor=white\&colorA=080f12\&colorB=3178C6)](https://www.typescriptlang.org/)
6
- [![Vitest](https://img.shields.io/badge/Vitest-Testing-080f12?style=flat\&logo=vitest\&logoColor=white\&colorA=080f12\&colorB=6E9F18)](https://vitest.dev/)
7
- [![Fastify](https://img.shields.io/badge/Fastify-Web-080f12?style=flat\&logo=fastify\&logoColor=white\&colorA=080f12\&colorB=000000)](https://fastify.io/)
8
- [![Vue.js](https://img.shields.io/badge/Vue.js-3-080f12?style=flat\&logo=vuedotjs\&logoColor=white\&colorA=080f12\&colorB=4FC08D)](https://vuejs.org/)
9
- [![Claude Code](https://img.shields.io/badge/Claude-Code-1fa669?style=flat\&colorA=080f12\&colorB=1fa669)](https://claude.ai/code)
10
-
11
- ***
3
+ [![License](https://img.shields.io/badge/license-MIT-080f12?style=flat&colorA=080f12&colorB=1fa669)](./LICENSE)
4
+ [![Node.js](https://img.shields.io/badge/Node.js-22.x-080f12?style=flat&logo=nodedotjs&logoColor=white&colorA=080f12&colorB=339933)](https://nodejs.org/)
5
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.x-080f12?style=flat&logo=typescript&logoColor=white&colorA=080f12&colorB=3178C6)](https://www.typescriptlang.org/)
6
+ [![Vitest](https://img.shields.io/badge/Vitest-Testing-080f12?style=flat&logo=vitest&logoColor=white&colorA=080f12&colorB=6E9F18)](https://vitest.dev/)
7
+ [![Fastify](https://img.shields.io/badge/Fastify-Web-080f12?style=flat&logo=fastify&logoColor=white&colorA=080f12&colorB=000000)](https://fastify.io/)
8
+ [![Vue.js](https://img.shields.io/badge/Vue.js-3-080f12?style=flat&logo=vuedotjs&logoColor=white&colorA=080f12&colorB=4FC08D)](https://vuejs.org/)
9
+ [![Claude Code](https://img.shields.io/badge/Claude-Code-1fa669?style=flat&colorA=080f12&colorB=1fa669)](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[\/\\]dist/);
38
+ const match = path.match(/mcp-hub-lite[/\\]dist/);
39
39
  return match ? match[0] : null;
40
40
  };
41
41
  const currentPackagePath = getPackagePath(currentPath);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loop_ouroboros/mcp-hub-lite",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "A lightweight MCP management platform designed for independent developers",
5
5
  "license": "MIT",
6
6
  "author": "loop_ouroboros",