@scoutagent/mcp-server 1.0.3 → 1.0.6
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/index.js +1 -8
- package/package.json +5 -3
package/index.js
CHANGED
|
@@ -11,11 +11,4 @@ if (args.length > 0) {
|
|
|
11
11
|
console.log("使用方法: npx @scoutagent/mcp-server [参数]");
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
// 这里以后可以添加真正的 MCP Server 逻辑
|
|
15
|
-
console.log("MCP Server for ScoutAgent");
|
|
16
|
-
const args = process.argv.slice(2);
|
|
17
|
-
if (args.length > 0) {
|
|
18
|
-
console.log("收到参数:", args);
|
|
19
|
-
} else {
|
|
20
|
-
console.log("使用方法: npx @scoutagent/mcp-server [参数]");
|
|
21
|
-
}
|
|
14
|
+
// 这里以后可以添加真正的 MCP Server 逻辑
|
package/package.json
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scoutagent/mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "MCP Server for ScoutAgent",
|
|
5
5
|
"main": "index.js",
|
|
6
|
-
"type": "module",
|
|
7
6
|
"bin": {
|
|
8
7
|
"mcp-server": "./index.js"
|
|
9
8
|
},
|
|
10
9
|
"scripts": {
|
|
11
10
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
12
11
|
},
|
|
13
|
-
"keywords": [
|
|
12
|
+
"keywords": [
|
|
13
|
+
"mcp",
|
|
14
|
+
"scoutagent"
|
|
15
|
+
],
|
|
14
16
|
"author": "",
|
|
15
17
|
"license": "ISC",
|
|
16
18
|
"publishConfig": {
|