Skip to main content
Glama

get_system_status

Determine if the Aerospace MCP system is operational and ready to process flight planning requests by retrieving its status and capabilities.

Instructions

Get system status and capabilities.

Returns: JSON string with system status information

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • This is the main handler function for the get_system_status tool. It returns a JSON string with system status information including version (0.1.0), status (operational), capabilities, and optional OpenAP performance modeling availability.
    def get_system_status() -> str:
        """Get system status and capabilities.
    
        Returns:
            JSON string with system status information
        """
        status = {
            "system": "Aerospace MCP Server",
            "version": "0.1.0",
            "status": "operational",
            "capabilities": {
                "airport_search": True,
                "flight_planning": True,
                "great_circle_distance": True,
                "openap_performance": OPENAP_AVAILABLE,
            },
            "optional_features": {
                "openap_available": OPENAP_AVAILABLE,
            },
        }
    
        if OPENAP_AVAILABLE:
            status["openap_info"] = {
                "description": "OpenAP aircraft performance modeling available",
                "supported_aircraft": "A319, A320, A321, A332, A333, A343, A346, A359, A388, B737, B738, B739, B744, B747, B752, B753, B762, B763, B772, B773, B777, B787, and more",
            }
        else:
            status["openap_info"] = {
                "description": "OpenAP not available - install with: pip install openap",
                "note": "Flight planning will work without performance estimates",
            }
    
        return json.dumps(status, indent=2)
  • Registration of get_system_status as a tool with the FastMCP server via mcp.tool().
    mcp.tool(get_system_status)
  • Registration of get_system_status in the CLI tool map (TOOL_MAP) mapping tool name to callable.
    "get_system_status": get_system_status,
  • Import of get_system_status from .tools.core into the FastMCP server module.
    get_system_status,
  • Import of get_system_status from .tools.core into the CLI module.
    get_system_status,
Behavior4/5

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

No annotations exist, so the description carries full burden. It discloses the return type as a JSON string with system status. Though it doesn't explicitly state read-only, the verb 'get' implies non-destructive behavior.

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?

Single sentence, no fluff, directly explains what the tool does. Every word earns its place.

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?

Given the output schema exists, the return format note is sufficient. The description is complete for a simple, parameterless tool.

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?

No parameters exist, and schema coverage is 100%. Baseline for 0 parameters is 4. Description adds no extra param info, but none is needed.

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 'Get system status and capabilities', which is a specific verb+resource. It distinguishes itself from sibling tools that are domain-specific by being a general system utility.

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?

No guidance on when to use this tool vs alternatives. For a generic tool among many specialized ones, explicit context would help the agent decide.

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/cheesejaguar/aerospace-mcp'

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