keryx 0.20.4 → 0.20.5

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/classes/Action.ts CHANGED
@@ -85,7 +85,7 @@ export type ActionConstructorInputs = {
85
85
  streaming?: boolean;
86
86
  };
87
87
 
88
- /** Per-action timeout in ms (overrides global `config.server.web.actionTimeout`; 0 disables) */
88
+ /** Per-action timeout in ms (overrides global `config.actions.timeout`; 0 disables) */
89
89
  timeout?: number;
90
90
 
91
91
  /** Configure this action as a background task/job */
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "keryx",
3
- "version": "0.20.4",
3
+ "version": "0.20.5",
4
+ "mcpName": "io.github.actionhero/keryx",
4
5
  "module": "index.ts",
5
6
  "type": "module",
6
7
  "license": "MIT",
@@ -55,7 +56,8 @@
55
56
  "keryx.ts",
56
57
  "migrations.ts",
57
58
  "tsconfig.json",
58
- "LICENSE"
59
+ "LICENSE",
60
+ "server.json"
59
61
  ],
60
62
  "bin": {
61
63
  "keryx": "keryx.ts"
package/server.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.actionhero/keryx",
4
+ "description": "The fullstack TypeScript framework for MCP and APIs — write one action, serve HTTP, WebSocket, CLI, background tasks, and MCP tools.",
5
+ "repository": {
6
+ "url": "https://github.com/actionhero/keryx",
7
+ "source": "github"
8
+ },
9
+ "version": "0.20.5",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "keryx",
14
+ "version": "0.20.5",
15
+ "transport": { "type": "http" }
16
+ }
17
+ ]
18
+ }