Skip to main content
Glama
lobster-kit

@lobsterkit/vault-mcp

Official
by lobster-kit

Revoke Share

revoke_share

Immediately revoke a share link so it can no longer be used to access the encrypted secret. Requires Builder+ tier.

Instructions

Revoke a share link immediately so it can no longer be used. Requires Builder+ tier.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
shareIdYesThe share ID to revoke (from list_shares)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the behavioral disclosure burden. It discloses immediate effect and tier requirement, but omts ownership/permission requirements and whether revoking is idempotent or irreversible, which would be useful for a mutating operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single front-loaded sentence with no redundant words; it efficiently states the action, timing, effect, and access requirement.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a one-parameter mutating tool with no output schema, the description plus the schema's param origin note cover the essential elements. Explicit irreversibility or error behavior would improve completeness, but it is adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the single param (shareId) already has a description noting it comes from list_shares, so the tool description adds no additional param semantics. Baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Revoke') with a clear resource ('a share link') and states the intended effect ('so it can no longer be used'), which differentiates it from sibling tools like share_secret and list_shares.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context for when to use the tool—when a share link must be invalidated immediately—and notes the Builder+ tier requirement. It does not explicitly name alternatives or exclusion cases, but the purpose is unambigous.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.