@lunora/mcp 1.0.0-alpha.55 → 1.0.0-alpha.57
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/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -34,9 +34,9 @@ declare const callTool: (client: LunoraClient, name: string, input: Record<strin
|
|
|
34
34
|
interface McpAgentExposure {
|
|
35
35
|
/** What the agent does — shown to the calling model, which decides from it. */
|
|
36
36
|
description: string;
|
|
37
|
-
/** The agent's export name (its `ctx.agents
|
|
37
|
+
/** The agent's export name (its `ctx.agents.<name>` / `AGENT_<NAME>` binding). */
|
|
38
38
|
name: string;
|
|
39
|
-
/** Override the model-facing tool name (default `agent_
|
|
39
|
+
/** Override the model-facing tool name (default `agent_<name>`). */
|
|
40
40
|
toolName?: string;
|
|
41
41
|
}
|
|
42
42
|
/** The generic status/poll tool advertised alongside the per-agent tools. */
|
|
@@ -93,7 +93,7 @@ interface LunoraMcpServerOptions {
|
|
|
93
93
|
/** The agents this server fronts as MCP tools (see `allowAgents`). */
|
|
94
94
|
agents?: ReadonlyArray<McpAgentExposure>;
|
|
95
95
|
/**
|
|
96
|
-
* Expose the per-agent tools (`agent_
|
|
96
|
+
* Expose the per-agent tools (`agent_<name>` + the generic
|
|
97
97
|
* `lunora_agent_status`). Defaults to `false`, mirroring `allowWrites`:
|
|
98
98
|
* starting a durable agent run is a side effect, so the agent tools are
|
|
99
99
|
* omitted from the advertised list AND refused at dispatch unless explicitly
|
package/dist/index.d.ts
CHANGED
|
@@ -34,9 +34,9 @@ declare const callTool: (client: LunoraClient, name: string, input: Record<strin
|
|
|
34
34
|
interface McpAgentExposure {
|
|
35
35
|
/** What the agent does — shown to the calling model, which decides from it. */
|
|
36
36
|
description: string;
|
|
37
|
-
/** The agent's export name (its `ctx.agents
|
|
37
|
+
/** The agent's export name (its `ctx.agents.<name>` / `AGENT_<NAME>` binding). */
|
|
38
38
|
name: string;
|
|
39
|
-
/** Override the model-facing tool name (default `agent_
|
|
39
|
+
/** Override the model-facing tool name (default `agent_<name>`). */
|
|
40
40
|
toolName?: string;
|
|
41
41
|
}
|
|
42
42
|
/** The generic status/poll tool advertised alongside the per-agent tools. */
|
|
@@ -93,7 +93,7 @@ interface LunoraMcpServerOptions {
|
|
|
93
93
|
/** The agents this server fronts as MCP tools (see `allowAgents`). */
|
|
94
94
|
agents?: ReadonlyArray<McpAgentExposure>;
|
|
95
95
|
/**
|
|
96
|
-
* Expose the per-agent tools (`agent_
|
|
96
|
+
* Expose the per-agent tools (`agent_<name>` + the generic
|
|
97
97
|
* `lunora_agent_status`). Defaults to `false`, mirroring `allowWrites`:
|
|
98
98
|
* starting a durable agent run is a side effect, so the agent tools are
|
|
99
99
|
* omitted from the advertised list AND refused at dispatch unless explicitly
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lunora/mcp",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.57",
|
|
4
4
|
"description": "Model Context Protocol server exposing a Lunora deployment to AI agents",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-agents",
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"access": "public"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@lunora/client": "1.0.0-alpha.
|
|
57
|
-
"@lunora/errors": "1.0.0-alpha.
|
|
56
|
+
"@lunora/client": "1.0.0-alpha.40",
|
|
57
|
+
"@lunora/errors": "1.0.0-alpha.14",
|
|
58
58
|
"@modelcontextprotocol/sdk": "^1.29.0"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|