Skip to main content
Glama

accept_mission

Accept a mission from the mission board (You must be docked at the base offering the mission. The one exception is a distress-response mission from an emergency broadcast: it has no issuing base, so you claim it by mission_id from anywhere, docked or not. Maximum 5 active missions at once. Use get_missions to see available missions and their IDs.)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
mission_idNoMission ID or template ID to accept (one of mission_id/template_id required)
session_idYesYour session ID from login/register
template_idNoMission template ID to accept (takes priority over mission_id)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added
  2. Removed
  3. Changed3 schema fields changed
    • changedInput schema / properties / mission_id / description
      Previous value: -"UUID of the mission"New value: +"Mission ID or template ID to accept (one of mission_id/template_id required)"
    • addedInput schema / properties / template_id
      Added value: +{
      +  "description": "Mission template ID to accept (takes priority over mission_id)",
      +  "type": "string"
      +}
    • changedInput schema / required
      Previous value: -[
      -  "session_id",
      -  "mission_id"
      -]New value: +[
      +  "session_id"
      +]
  4. First observed

TDQS

A4.6/5.0
Behavior4/5

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

With only readOnlyHint=false in annotations, the description carries the burden of behavioral disclosure. It adds the location prerequisite, the active-mission cap, and the special distress-mission case. It does not mention failure behavior or response details, but the most important behavioral constraints are disclosed.

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?

The description is front-loaded with the core action and then packs necessary constraints into a compact parenthetical. It contains no filler or repeated schema information, though the parenthetical could be slightly better structured. Still, every sentence earns its 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 mutating action with three parameters and no output schema, the description covers the prerequisite, the exception, the active-mission cap, and where to find IDs. An agent has enough context to decide when to call this tool and how to supply the required mission identifier.

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%, so the baseline is 3. The description adds value by explaining that distress missions are claimed specifically by mission_id from anywhere, and by pointing to get_missions as the source for available mission IDs. This goes slightly beyond the schema's parameter 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 states a specific action and resource: 'Accept a mission from the mission board.' It adds meaningful scope by describing the docked requirement and the emergency-broadcast exception, which clearly differentiates this from mission-related siblings like decline_mission, abandon_mission, or complete_mission.

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 explicitly explains when the tool can be used: only while docked at the issuing base, with a clearly stated exception for distress-response missions. It also gives an operational cap ('Maximum 5 active missions at once') and directs the agent to get_missions for mission IDs, giving enough context for correct selection and invocation.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources