@kb-labs/agent-mcp 0.6.0 → 2.9.0

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 ADDED
@@ -0,0 +1 @@
1
+ # TODO
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { ToolPack, ToolConflictPolicy, ToolPermissions, PackedTool } from '@kb-labs/agent-contracts';
1
+ import { ToolConflictPolicy, ToolPermissions, ToolPack, PackedTool } from '@kb-labs/agent-contracts';
2
2
 
3
3
  /**
4
4
  * MCPToolPack — bridges an MCP server to the ToolPack contract.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kb-labs/agent-mcp",
3
- "version": "0.6.0",
3
+ "version": "2.9.0",
4
4
  "type": "module",
5
5
  "description": "MCP (Model Context Protocol) integration for KB Labs Agents. Client → MCPToolPack + Server → agent as MCP endpoint.",
6
6
  "main": "./dist/index.js",
@@ -17,31 +17,31 @@
17
17
  "README.md"
18
18
  ],
19
19
  "sideEffects": false,
20
- "scripts": {
21
- "clean": "rimraf dist",
22
- "build": "tsup --config tsup.config.ts",
23
- "dev": "tsup --config tsup.config.ts --watch",
24
- "lint": "eslint src --ext .ts",
25
- "type-check": "tsc --noEmit",
26
- "test": "vitest run --passWithNoTests",
27
- "test:watch": "vitest"
28
- },
29
20
  "dependencies": {
30
- "@kb-labs/agent-contracts": "^0.6.0",
31
21
  "@modelcontextprotocol/sdk": "^1.26.0",
32
- "zod": "^3.23.8"
22
+ "zod": "^3.23.8",
23
+ "@kb-labs/agent-contracts": "2.9.0"
33
24
  },
34
25
  "devDependencies": {
35
- "@kb-labs/devkit": "link:../../../../infra/kb-labs-devkit",
36
26
  "@types/node": "^24.3.3",
37
27
  "eslint": "^9",
38
28
  "rimraf": "^6.0.1",
39
29
  "tsup": "^8.5.0",
40
30
  "typescript": "^5.6.3",
41
- "vitest": "^3.2.4"
31
+ "vitest": "^3.2.4",
32
+ "@kb-labs/devkit": "2.9.0"
42
33
  },
43
34
  "engines": {
44
35
  "node": ">=20.0.0",
45
36
  "pnpm": ">=9.0.0"
37
+ },
38
+ "scripts": {
39
+ "clean": "rimraf dist",
40
+ "build": "tsup --config tsup.config.ts",
41
+ "dev": "tsup --config tsup.config.ts --watch",
42
+ "lint": "eslint src --ext .ts",
43
+ "type-check": "tsc --noEmit",
44
+ "test": "vitest run --passWithNoTests",
45
+ "test:watch": "vitest"
46
46
  }
47
- }
47
+ }