{"openapi":"3.0.3","info":{"title":"Gnist Context — Space Weather","description":"Space weather — solar flares, geomagnetic storms, ISS position tracking.\n\n- **MCP endpoint:** `https://context.gnist.ai/mcp/space-weather/`\n- **Toolkit page:** `/toolkits/space-weather`\n- **Full API spec:** `/api/openapi.json`\n- **Get an API key:** `/signup`","version":"1.0.0","contact":{"name":"GnistAI","url":"https://gnist.ai"}},"servers":[{"url":"https://context.gnist.ai","description":"Production"}],"paths":{"/rest/space-weather/get_solar_flares":{"post":{"tags":["Science"],"summary":"get_solar_flares","description":"Get recent solar flare events from NASA.\n\nReturns flare class (A/B/C/M/X), timing, source location, and active region.\n\nArgs:\n    days: Number of days to look back (1-30, default 7).","operationId":"space_weather_get_solar_flares","responses":{"200":{"description":"Successful tool call","content":{"application/json":{"schema":{"type":"object"}}}},"404":{"description":"Server or tool not found"},"500":{"description":"Tool execution error"}},"security":[{"ApiKeyHeader":[]},{"ApiKeyQuery":[]}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"days":{"default":7,"type":"integer"}},"type":"object"}}}}}},"/rest/space-weather/get_geomagnetic_storms":{"post":{"tags":["Science"],"summary":"get_geomagnetic_storms","description":"Get recent geomagnetic storm events from NASA.\n\nReturns storm timing and maximum Kp index (planetary K-index, 0-9 scale).\nKp >= 5 indicates a geomagnetic storm; Kp >= 7 is severe.\n\nArgs:\n    days: Number of days to look back (1-60, default 30).","operationId":"space_weather_get_geomagnetic_storms","responses":{"200":{"description":"Successful tool call","content":{"application/json":{"schema":{"type":"object"}}}},"404":{"description":"Server or tool not found"},"500":{"description":"Tool execution error"}},"security":[{"ApiKeyHeader":[]},{"ApiKeyQuery":[]}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"days":{"default":30,"type":"integer"}},"type":"object"}}}}}},"/rest/space-weather/get_iss_position":{"post":{"tags":["Science"],"summary":"get_iss_position","description":"Get the current position of the International Space Station.\n\nReturns latitude, longitude, and timestamp.","operationId":"space_weather_get_iss_position","responses":{"200":{"description":"Successful tool call","content":{"application/json":{"schema":{"type":"object"}}}},"404":{"description":"Server or tool not found"},"500":{"description":"Tool execution error"}},"security":[{"ApiKeyHeader":[]},{"ApiKeyQuery":[]}]}},"/rest/space-weather/report_feedback":{"post":{"tags":["Science"],"summary":"report_feedback","description":"Report a bug, feature request, or general feedback for this data source.\n\nUse this when something doesn't work as expected, when you'd like\na new feature, or when you have suggestions for improvement.\n\nArgs:\n    feedback: Describe the issue or suggestion.\n    feedback_type: One of 'bug', 'feature_request', or 'general'.","operationId":"space_weather_report_feedback","responses":{"200":{"description":"Successful tool call","content":{"application/json":{"schema":{"type":"object"}}}},"404":{"description":"Server or tool not found"},"500":{"description":"Tool execution error"}},"security":[{"ApiKeyHeader":[]},{"ApiKeyQuery":[]}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"additionalProperties":false,"properties":{"feedback":{"type":"string"},"feedback_type":{"default":"general","type":"string"}},"required":["feedback"],"type":"object"}}}}}}},"tags":[{"name":"Science","description":"Data sources: Science"}],"components":{"securitySchemes":{"ApiKeyHeader":{"type":"apiKey","in":"header","name":"gnist-api-key","description":"API key passed via request header."},"ApiKeyQuery":{"type":"apiKey","in":"query","name":"gnist_api_key","description":"API key passed via query parameter."}}}}