@lambdacurry/arbor 0.21.15 → 0.21.16
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 +7 -1
- package/package.json +1 -1
package/dist/arbor.js
CHANGED
|
@@ -18219,7 +18219,11 @@ var MCP_OUTPUT_SCHEMAS = {
|
|
|
18219
18219
|
url: exports_external.string(),
|
|
18220
18220
|
replayed: exports_external.boolean()
|
|
18221
18221
|
}),
|
|
18222
|
-
app_list: exports_external.
|
|
18222
|
+
app_list: exports_external.looseObject({
|
|
18223
|
+
apps: exports_external.array(app2),
|
|
18224
|
+
total: exports_external.number().int().min(0),
|
|
18225
|
+
nextCursor: exports_external.string().optional()
|
|
18226
|
+
}),
|
|
18223
18227
|
app_get: exports_external.looseObject({
|
|
18224
18228
|
app: app2,
|
|
18225
18229
|
deployments: exports_external.array(jsonObject),
|
|
@@ -21110,6 +21114,7 @@ var ACTION_DEFINITIONS = [
|
|
|
21110
21114
|
title: "List visible Apps",
|
|
21111
21115
|
description: "List Apps available to you: every App in your Spaces plus active listed public Apps across the organization. Lifecycle and last activation health are separate fields; unlisted public and archived Apps appear only to actors authorized for their owning Space.",
|
|
21112
21116
|
inputSchema: {
|
|
21117
|
+
...PAGINATION_INPUT,
|
|
21113
21118
|
includeArchived: exports_external.boolean().optional().describe("include archived Apps you are authorized to inspect")
|
|
21114
21119
|
},
|
|
21115
21120
|
surfaces: ["cli"],
|
|
@@ -21121,6 +21126,7 @@ var ACTION_DEFINITIONS = [
|
|
|
21121
21126
|
title: "List visible Apps",
|
|
21122
21127
|
description: "List Apps visible to you, including authorized archived Apps when requested. It cannot modify App state, deployment state, access, or durable SQLite.",
|
|
21123
21128
|
inputSchema: {
|
|
21129
|
+
...PAGINATION_INPUT,
|
|
21124
21130
|
includeArchived: exports_external.boolean().optional().describe("include archived Apps you are authorized to inspect")
|
|
21125
21131
|
},
|
|
21126
21132
|
surfaces: ["computer-mcp"],
|
package/package.json
CHANGED