@lambdacurry/arbor 0.20.1 → 0.20.2
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/arbor.js +18 -0
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -17105,6 +17105,10 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
17105
17105
|
lineage: exports_external.array(jsonObject),
|
|
17106
17106
|
reprovisions: exports_external.array(jsonObject)
|
|
17107
17107
|
}),
|
|
17108
|
+
computer_inventory: exports_external.looseObject({
|
|
17109
|
+
computers: exports_external.array(jsonObject),
|
|
17110
|
+
nextCursor: exports_external.string().nullable()
|
|
17111
|
+
}),
|
|
17108
17112
|
github_repositories: exports_external.looseObject({
|
|
17109
17113
|
repositories: exports_external.array(jsonObject),
|
|
17110
17114
|
nextCursor: exports_external.string().nullable().optional(),
|
|
@@ -17715,6 +17719,7 @@ var MCP_TOOL_ANNOTATIONS = {
|
|
|
17715
17719
|
set_thread_computer: additive,
|
|
17716
17720
|
attach_computer: additive,
|
|
17717
17721
|
get_computer: readOnly,
|
|
17722
|
+
computer_inventory: readOnly,
|
|
17718
17723
|
publish_topic_computer: additive,
|
|
17719
17724
|
checkpoint_computer: additive,
|
|
17720
17725
|
transition_thread: additive,
|
|
@@ -18465,6 +18470,19 @@ var ACTION_DEFINITIONS = [
|
|
|
18465
18470
|
toolset: "loop",
|
|
18466
18471
|
run: forward("computer.get")
|
|
18467
18472
|
},
|
|
18473
|
+
{
|
|
18474
|
+
name: "computer_inventory",
|
|
18475
|
+
title: "Inventory organization Computers",
|
|
18476
|
+
description: "READ ONLY: Inventory materialized Thread Computers in your organization, optionally scoped to one Topic. Reports active generation, recipe compatibility, counts for generations/sessions/snapshots/Runs, and factual flags for stale recipes, superseded generations, active Runs, legacy Run placement, and failed reprovisions. Organization owner/admin only. This is an operational read model, not a deletion recommendation.",
|
|
18477
|
+
inputSchema: {
|
|
18478
|
+
topicId: exports_external.string().optional().describe("optional Topic to scope the inventory"),
|
|
18479
|
+
limit: exports_external.number().int().min(1).max(50).optional().describe("rows to return (default 25)"),
|
|
18480
|
+
cursor: exports_external.string().optional().describe("active Computer id returned as nextCursor by the previous page")
|
|
18481
|
+
},
|
|
18482
|
+
surfaces: ["mcp", "cli"],
|
|
18483
|
+
toolset: "admin",
|
|
18484
|
+
run: forward("computer.inventory")
|
|
18485
|
+
},
|
|
18468
18486
|
{
|
|
18469
18487
|
name: "publish_topic_computer",
|
|
18470
18488
|
title: "Publish a Topic computer base",
|
package/package.json
CHANGED