Skip to main content
Glama

mesh_unserve

Stop serving a procedure previously registered with mesh_serve, and shut down the local serve-daemon if no other procedures remain. Takes no action if the procedure was never registered.

Instructions

Stop serving a procedure registered by mesh_serve. If nothing else is registered afterward, also stops this process's own serve-daemon. No-op if the procedure was never registered.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
procedureYesThe procedure name to stop serving, as passed to mesh_serve.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.28.7

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden, and it delivers: it discloses the side effect of stopping the process's own serve daemon when nothing else is registered, and it states the no-op behavior for unregistered procedures. This is valuable behavioral information beyond the name.

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 two sentences, front-loaded with the core action, and every clause adds meaningful information: the target, the daemon side effect, and the no-op guarantee. There is no filler or redundant schema repetition.

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?

Given the tool's simplicity (one parameter, no output schema), the description covers the operation, its side effect, and a failure/idempotency case. An agent has enough context to decide when to call this tool and what will happen.

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?

The schema already describes the 'procedure' parameter as the name passed to mesh_serve, and schema coverage is 100%. The description adds no new parameter-level details, so a baseline score of 3 is appropriate.

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 opens with a specific verb and object: 'Stop serving a procedure registered by mesh_serve.' It clearly identifies the resource and how it relates to the sibling tool mesh_serve, leaving no ambiguity about what the tool does.

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

Usage Guidelines5/5

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

The description defines the exact condition for use ('procedure registered by mesh_serve') and explicitly covers the edge case where the procedure was never registered, stating it is a no-op. This gives the agent clear guidance on when to invoke it and what to expect.

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