Skip to main content
Glama
ziksjksk

kerbal-space-program-mcp

by ziksjksk

ksp_flight_abort

Triggers the stock Abort action group in Kerbal Space Program to perform an emergency flight abort during launches or missions.

Instructions

Fire the stock Abort action group.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.9

TDQS

B3/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. 'Fire' implies a mutating, likely irreversible in-flight action (abort groups in KSP can decouple stages, trigger escape systems, etc.), yet the description says nothing about what happens to the craft, whether it can be undone, or what it requires. This is a significant gap for an action 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?

A single short sentence, front-loaded and free of filler. It is not padded, though it is arguably too terse given what the action does.

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

Completeness2/5

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

For a zero-parameter, no-output-schema action tool, the description needn't explain return values, but it should convey the effect and risk of the action. It omits what firing the abort group does, leaving the agent unable to judge consequences before invoking it.

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?

The tool takes zero parameters, so there is no parameter semantics to document; baseline 4 applies. Nothing in the description is needed to compensate for schema gaps.

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

Purpose4/5

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

States a specific verb (fire) and resource (the stock Abort action group), which is enough to distinguish it from siblings like ksp_flight_stage or ksp_flight_set_controls. It stops short of explaining what 'firing the abort group' actually does, but the action itself is unambiguous.

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

Usage Guidelines2/5

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

There is no guidance on when to fire the abort group, what preconditions apply, or which sibling to use instead for related actions. The agent must infer usage entirely from the name.

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