@rosthq/cli 0.7.132 → 0.7.133

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.js CHANGED
@@ -32804,6 +32804,10 @@ var mcpCatalogSchema = external_exports.object({
32804
32804
  digest: external_exports.string().regex(/^sha256:[0-9a-f]{64}$/),
32805
32805
  discovered_at: external_exports.string().datetime({ offset: true })
32806
32806
  }).strict();
32807
+ var mcpToolRefusalReasonSchema = external_exports.enum([
32808
+ "credential_shaped_tool_name",
32809
+ "credential_shaped_schema_key"
32810
+ ]);
32807
32811
 
32808
32812
  // ../../packages/protocol/src/cli-bootstrap.ts
32809
32813
  var uuidSchema10 = external_exports.string().uuid();
@@ -57214,7 +57218,7 @@ After import, continue from the draft Seat page. Review the Charter, choose a St
57214
57218
  order: 91,
57215
57219
  title: "Remote MCP connection guide",
57216
57220
  summary: "How an operator connects a company-wide remote MCP server, reviews its advertised tools, and disconnects \u2014 connect grants no agent access on its own.",
57217
- version: "2026-07-22.1",
57221
+ version: "2026-07-31.1",
57218
57222
  public: false,
57219
57223
  audiences: ["human"],
57220
57224
  stages: ["operating_rhythm"],
@@ -57247,6 +57251,8 @@ An owner or admin opens Settings \u2192 Connections and connects one of the work
57247
57251
 
57248
57252
  Each connected server lists the tools it advertises. Every tool is shown with a conservative tier: **Read** only when the server explicitly marks the tool read-only, otherwise **Approval-held** (a steward must approve each use). A tool the server flags as destructive is labelled so. These labels are advisory context for the human \u2014 the signed Charter and the guard remain the authority on what an agent may actually call.
57249
57253
 
57254
+ A tool can be absent from this list even though the server advertises it. Discovery withholds any tool whose name \u2014 or any argument name in its input schema \u2014 is shaped like credential material, because that string is the contract a grant and the model must reproduce, so it cannot be rewritten the way a description can. The omission is silent at the point of use: the withheld tool simply never exists for your company, so an agent asked to call it has no such tool and no error at the call site names why. What you do see is the record: the connection's lifecycle event notes how many tools were withheld and the typed reason category, never the credential-shaped string itself.
57255
+
57250
57256
  ## Disconnect
57251
57257
 
57252
57258
  Disconnecting revokes the stored credential immediately (any in-flight run fails closed), marks the connection disconnected, and revokes the vault secret. It is idempotent and admin-gated.
@@ -57256,6 +57262,7 @@ Disconnecting revokes the stored credential immediately (any in-flight run fails
57256
57262
  - The server URL is fixed at connect time; a model can never redirect the connector to another host or tool.
57257
57263
  - Every outbound request passes an SSRF chokepoint (HTTPS-only, private/link-local/metadata addresses rejected, the validated IP pinned to defeat DNS rebinding) and never follows a redirect with the credential attached.
57258
57264
  - Responses are size- and time-bounded and validated before they reach a model; the bearer token is redacted from any result.
57265
+ - A tool whose advertised name or argument names look like credential material is withheld at discovery rather than stored or shown to a model, and self-reported descriptions and labels are scanned for secret material before they are persisted.
57259
57266
  - Connections are tenant-isolated by RLS; one company never sees another's servers or catalog.`
57260
57267
  }
57261
57268
  ];