@kya-os/mcp-i 1.6.3-canary.clientinfo.20251126124133 → 1.6.3
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/dist/189.js +1 -1
- package/dist/570.js +1 -1
- package/dist/739.js +1 -1
- package/dist/runtime/adapter-express.js +1 -1
- package/dist/runtime/adapter-express.js.LICENSE.txt +6 -0
- package/dist/runtime/adapter-nextjs.js +1 -1
- package/dist/runtime/http.js +1 -1
- package/dist/runtime/http.js.LICENSE.txt +6 -0
- package/dist/runtime/session.js +2 -0
- package/dist/runtime/stdio.js +1 -1
- package/dist/runtime/utils/tools.js +1 -0
- package/package.json +5 -5
|
@@ -549,6 +549,7 @@ async function addToolsToServer(server, toolModules, identityConfig) {
|
|
|
549
549
|
timestamp,
|
|
550
550
|
lastActivity: timestamp,
|
|
551
551
|
ttlMinutes: 30,
|
|
552
|
+
identityState: "anonymous", // Phase 5: Synthesized sessions are anonymous
|
|
552
553
|
};
|
|
553
554
|
// Determine scopeId from tool protection configuration
|
|
554
555
|
// This enables AgentShield tool auto-discovery
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kya-os/mcp-i",
|
|
3
|
-
"version": "1.6.3
|
|
3
|
+
"version": "1.6.3",
|
|
4
4
|
"description": "The TypeScript MCP framework with identity features built-in",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -63,8 +63,8 @@
|
|
|
63
63
|
"model-context-protocol"
|
|
64
64
|
],
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@kya-os/contracts": "^1.6.
|
|
67
|
-
"@kya-os/mcp-i-core": "^1.3.
|
|
66
|
+
"@kya-os/contracts": "^1.6.4",
|
|
67
|
+
"@kya-os/mcp-i-core": "^1.3.10",
|
|
68
68
|
"@modelcontextprotocol/sdk": "^1.11.4",
|
|
69
69
|
"@swc/core": "^1.11.24",
|
|
70
70
|
"@types/express": "^5.0.1",
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"ts-loader": "^9.4.2",
|
|
118
118
|
"typescript": "^5.3.0",
|
|
119
119
|
"vitest": "^4.0.5",
|
|
120
|
-
"zod": "^3.
|
|
120
|
+
"zod": "^3.25.76"
|
|
121
121
|
},
|
|
122
122
|
"engines": {
|
|
123
123
|
"node": ">=20.0.0"
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"peerDependencies": {
|
|
126
126
|
"json-canonicalize": "^2.0.0",
|
|
127
127
|
"swc-loader": "^0.2.6",
|
|
128
|
-
"zod": "^3.
|
|
128
|
+
"zod": "^3.25.76"
|
|
129
129
|
},
|
|
130
130
|
"author": "MCP-I Team",
|
|
131
131
|
"license": "MIT",
|