Skip to main content
Glama
vkmtx

veil-mcp

by vkmtx

Stop a background run

sh_kill

Stop a background process by its run ID. Sends SIGTERM (escalates to SIGKILL after 2s) to the process group, ensuring child processes terminate. Returns 'terminating' or 'already_exited' if already stopped.

Instructions

Stop a background run started with sh_run background:true, by id. Signals the whole process group (so a dev server's children die too). SIGTERM (the default) escalates to SIGKILL after 2s if the process ignores it. Returns status:"terminating" — the signal was sent but the OS hasn't confirmed the process is dead yet; poll sh_logs to see it settle to exited/killed. Killing an id whose process has ALREADY exited is not an error — it returns already_exited (idempotent).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe background run id returned by sh_run (e.g. cmd7).
signalNoSignal to send. SIGTERM escalates to SIGKILL after 2s.SIGTERM
Behavior5/5

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

No annotations provided, so description fully bears the load. Discloses key behavioral traits: whole process group signaling, SIGTERM→SIGKILL escalation after 2s, idempotency for already-exited runs, and specific return status.

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?

Concise yet information-dense. Every sentence adds value: purpose, signaling behavior, return status, and idempotency. Front-loaded with the core action.

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?

Covers major aspects: purpose, parameters, behavior, return status, and edge case (already-exited). Lacks detail on error handling for invalid ids, but overall sufficient for the tool's complexity.

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?

Schema coverage is 100%, baseline 3. Description adds value by explaining id provenance (from sh_run) and signal behavior (escalation), which goes beyond schema descriptions.

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 clearly states the verb (stop) and resource (background run), and differentiates it from siblings like sh_logs and sh_detail by specifying it kills a run started with sh_run background:true.

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 context on when to use (to stop a background run), behavior like signaling process group and signal escalation, and mentions polling sh_logs for confirmation. Lacks explicit alternatives or when-not-to-use instructions.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/vkmtx/veil-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server