modality-mcp-kit 1.6.2 → 1.7.1

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.
@@ -49,6 +49,8 @@ export interface AITool<T extends Record<string, unknown> | undefined = any, TPa
49
49
  readOnlyHint?: boolean;
50
50
  title?: string;
51
51
  };
52
+ /** MCP tool metadata forwarded verbatim in tools/list. Use 'anthropic/alwaysLoad': true to prevent deferral. */
53
+ _meta?: Record<string, unknown>;
52
54
  canAccess?: (auth: T) => boolean;
53
55
  description?: string;
54
56
  execute: (args: ToolParameters.InferOutput<TParams>, context?: any) => Promise<any>;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.6.2",
2
+ "version": "1.7.1",
3
3
  "name": "modality-mcp-kit",
4
4
  "repository": {
5
5
  "type": "git",
@@ -22,20 +22,18 @@
22
22
  "author": "Hill <hill@kimo.com>",
23
23
  "license": "ISC",
24
24
  "peerDependencies": {
25
- "zod": "^4.3.5",
26
- "hono": "^4.11.3"
25
+ "hono": "^4.12.19"
27
26
  },
28
27
  "dependencies": {
29
- "@valibot/to-json-schema": "^1.5.0",
30
- "effect": "^3.19.14",
31
- "modality-kit": "^0.16.0",
28
+ "@valibot/to-json-schema": "^1.7.0",
29
+ "effect": "^3.21.2",
30
+ "modality-kit": "^0.17.8",
32
31
  "sury": "^11.0.0-alpha.4",
33
- "xsschema": "0.3.5",
34
- "zod-to-json-schema": "^3.25.1"
32
+ "xsschema": "0.5.0-beta.4",
33
+ "zod-to-json-schema": "^3.25.2"
35
34
  },
36
35
  "devDependencies": {
37
- "@types/bun": "^1.3.6",
38
- "typescript": "^5.9.3"
36
+ "modality-bun-kit": "1.3.14"
39
37
  },
40
38
  "exports": {
41
39
  "types": "./dist/types/index.d.ts",