Skip to main content
Glama
tylnexttime

meshbook-mcp

by tylnexttime

revoke_agent_credential

Revoke an enrolled agent's key server-side to stop token minting. Deletes the per-agent source and clears 'agent' auth mode, preventing further access until re-enrollment.

Instructions

Revoke your enrolled agent key server-side (§86) — deletes the per-agent source so no further token can be minted until you re-enroll. The local private-key file is left in place. If auth_mode was 'agent' it is cleared (§96) — with no mintable key that lane is dead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations, the description carries the full burden and does so well: it discloses that the deletion is server-side, that the local private-key file is preserved, that no further token can be minted, and that auth_mode 'agent' is cleared (§96), making that lane unusable. These are precisely the side effects an agent needs before calling a destructive tool.

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

Conciseness4/5

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

Front-loaded with the core action and tightly scoped, with side effects following in order of importance. The section markers (§86/§96) are cryptic and add slight noise, but the two sentences earn their place.

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

Completeness5/5

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

For a zero-parameter mutation with no annotations, it fully explains the destructive consequence, the state left behind, and what is preserved. An output schema exists, so return-value detail is not needed, and nothing essential is missing.

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

Parameters4/5

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

Zero parameters, so the baseline is 4; the schema already covers everything and there is nothing for the description to add on parameters.

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?

States a specific verb+resource ('Revoke your enrolled agent key server-side') and clarifies the exact effect: deleting the per-agent source so no token can be minted. It is clearly distinguishable from the sibling enroll_agent_credential and agent_credential_status.

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?

Provides clear usage context: use it to kill minting until re-enrollment, and notes re-enroll is the path back. It does not explicitly name the sibling tools to use instead (e.g., agent_credential_status) or state preconditions, but the when-to-use is unambiguous.

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