@bsbofmusic/agent-reach-mcp 1.2.3 → 1.2.4
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 +10 -0
- package/agent-reach-mcp.cmd +2 -0
- package/{index.js → agent-reach-mcp.js} +1 -1
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ 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.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.2.4] - 2026-02-28
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Windows JScript fix**: Added .cmd wrapper to prevent Windows from executing .js files with JScript (fixes error 800A03EA)
|
|
12
|
+
- **File rename**: Renamed index.js to agent-reach-mcp.js to avoid ambiguity
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- **Windows npx compatibility**: Windows users now can safely run `npx @bsbofmusic/agent-reach-mcp` without JScript errors
|
|
16
|
+
- **Path resolution**: Added proper Windows path handling
|
|
17
|
+
|
|
8
18
|
## [1.2.3] - 2026-02-28
|
|
9
19
|
|
|
10
20
|
### Added
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
ListToolsRequestSchema,
|
|
12
12
|
} from "@modelcontextprotocol/sdk/types.js";
|
|
13
13
|
|
|
14
|
-
const VERSION = "1.2.
|
|
14
|
+
const VERSION = "1.2.4";
|
|
15
15
|
const AGENT_REACH_REPO = "https://github.com/Panniantong/agent-reach";
|
|
16
16
|
const BOOTSTRAP_TIMESTAMP_FILE = ".bootstrap_done";
|
|
17
17
|
const LOCK_FILE = ".ensure.lock";
|
package/package.json
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bsbofmusic/agent-reach-mcp",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"description": "MCP stdio server for Agent-Reach. Bootstrap ensure, auto-install Docker, full platform support (XiaoHongShu, Douyin, Twitter, YouTube, Bilibili, GitHub).",
|
|
3
|
+
"version": "1.2.4",
|
|
4
|
+
"description": "MCP stdio server for Agent-Reach. Bootstrap ensure, auto-install Docker, full platform support (XiaoHongShu, Douyin, Twitter, YouTube, Bilibili, GitHub). Windows compatible via .cmd wrapper.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
|
-
"agent-reach-mcp": "
|
|
8
|
+
"agent-reach-mcp": "agent-reach-mcp.js"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
|
-
"
|
|
11
|
+
"agent-reach-mcp.js",
|
|
12
|
+
"agent-reach-mcp.cmd",
|
|
12
13
|
"README.md",
|
|
13
14
|
"CHANGELOG.md",
|
|
14
15
|
"THIRD_PARTY_NOTICES.md"
|
|
15
16
|
],
|
|
16
17
|
"scripts": {
|
|
17
|
-
"start": "node
|
|
18
|
+
"start": "node agent-reach-mcp.js"
|
|
18
19
|
},
|
|
19
20
|
"dependencies": {
|
|
20
21
|
"@modelcontextprotocol/sdk": "^1.17.0"
|