Skip to main content
Glama

get_system_status

Retrieve system status and capabilities for the Aerospace MCP server to ensure optimal flight planning and aviation operations, supporting 28,000+ airports and 190+ aircraft types.

Instructions

Get system status and capabilities

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The main handler function for the 'get_system_status' tool. It returns a JSON string containing the system status, version, capabilities, and information about optional features like OpenAP 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 the 'get_system_status' tool using FastMCP's mcp.tool() method.
    mcp.tool(get_system_status)
  • Import of the get_system_status function from .tools.core in the FastMCP server, necessary for registration.
    get_system_status,

Other Tools

Related 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