network-ai 4.0.10 → 4.0.11
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/README.md +1 -1
- package/bin/mcp-server.ts +3 -3
- package/dist/bin/mcp-server.d.ts +1 -1
- package/dist/bin/mcp-server.js +3 -3
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/lib/mcp-transport-sse.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://github.com/jovanSAPFIONEER/Network-AI/actions/workflows/ci.yml)
|
|
6
6
|
[](https://github.com/jovanSAPFIONEER/Network-AI/actions/workflows/codeql.yml)
|
|
7
|
-
[](https://github.com/jovanSAPFIONEER/Network-AI/releases)
|
|
8
8
|
[](https://www.npmjs.com/package/network-ai)
|
|
9
9
|
[](#testing)
|
|
10
10
|
[](#adapter-system)
|
package/bin/mcp-server.ts
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
* http://localhost:3001/tools (list all tools)
|
|
30
30
|
*
|
|
31
31
|
* @module bin/mcp-server
|
|
32
|
-
* @version 4.0.
|
|
32
|
+
* @version 4.0.11
|
|
33
33
|
*/
|
|
34
34
|
|
|
35
35
|
import {
|
|
@@ -106,7 +106,7 @@ function parseArgs(argv: string[]): ServerArgs {
|
|
|
106
106
|
|
|
107
107
|
function printHelp(): void {
|
|
108
108
|
console.log(`
|
|
109
|
-
network-ai-server — Network-AI MCP Server v4.0.
|
|
109
|
+
network-ai-server — Network-AI MCP Server v4.0.11
|
|
110
110
|
|
|
111
111
|
Usage: npx ts-node bin/mcp-server.ts [options]
|
|
112
112
|
|
|
@@ -144,7 +144,7 @@ async function main(): Promise<void> {
|
|
|
144
144
|
process.exit(0);
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
-
console.log(`\n[network-ai-server] Starting MCP Server v4.0.
|
|
147
|
+
console.log(`\n[network-ai-server] Starting MCP Server v4.0.11`);
|
|
148
148
|
console.log(`[network-ai-server] Board: ${args.board} | Port: ${args.port}`);
|
|
149
149
|
|
|
150
150
|
// --------------------------------------------------------------------------
|
package/dist/bin/mcp-server.d.ts
CHANGED
package/dist/bin/mcp-server.js
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
* http://localhost:3001/tools (list all tools)
|
|
31
31
|
*
|
|
32
32
|
* @module bin/mcp-server
|
|
33
|
-
* @version 4.0.
|
|
33
|
+
* @version 4.0.11
|
|
34
34
|
*/
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
36
|
const index_1 = require("../index");
|
|
@@ -106,7 +106,7 @@ function parseArgs(argv) {
|
|
|
106
106
|
}
|
|
107
107
|
function printHelp() {
|
|
108
108
|
console.log(`
|
|
109
|
-
network-ai-server — Network-AI MCP Server v4.0.
|
|
109
|
+
network-ai-server — Network-AI MCP Server v4.0.11
|
|
110
110
|
|
|
111
111
|
Usage: npx ts-node bin/mcp-server.ts [options]
|
|
112
112
|
|
|
@@ -140,7 +140,7 @@ async function main() {
|
|
|
140
140
|
printHelp();
|
|
141
141
|
process.exit(0);
|
|
142
142
|
}
|
|
143
|
-
console.log(`\n[network-ai-server] Starting MCP Server v4.0.
|
|
143
|
+
console.log(`\n[network-ai-server] Starting MCP Server v4.0.11`);
|
|
144
144
|
console.log(`[network-ai-server] Board: ${args.board} | Port: ${args.port}`);
|
|
145
145
|
// --------------------------------------------------------------------------
|
|
146
146
|
// 1. Create orchestrator + blackboard
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -125,7 +125,7 @@ class McpCombinedBridge {
|
|
|
125
125
|
return this._ok(id, {
|
|
126
126
|
protocolVersion: '2024-11-05',
|
|
127
127
|
capabilities: { tools: {} },
|
|
128
|
-
serverInfo: { name: this.name ?? 'network-ai', version: '4.0.
|
|
128
|
+
serverInfo: { name: this.name ?? 'network-ai', version: '4.0.11' },
|
|
129
129
|
});
|
|
130
130
|
// Client signals it's ready — notification (no response needed, but
|
|
131
131
|
// some clients send it as a request with an id)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "network-ai",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.11",
|
|
4
4
|
"description": "AI agent orchestration framework for TypeScript/Node.js - plug-and-play multi-agent coordination with 12 frameworks (LangChain, AutoGen, CrewAI, OpenAI Assistants, LlamaIndex, Semantic Kernel, Haystack, DSPy, Agno, MCP, OpenClaw). Built-in security, swarm intelligence, and agentic workflow patterns.",
|
|
5
5
|
"homepage": "https://github.com/jovanSAPFIONEER/Network-AI#readme",
|
|
6
6
|
"main": "dist/index.js",
|