Skip to main content
Glama

Get Solar Flares

get_solar_flares
Read-onlyIdempotent

Get recent solar flare events from NASA DONKI space-weather data. Returns each flare's class (e.g. C4.0, M1.8, X1.2), begin/peak/end times, source region, and active region number. Use for "recent solar flares", "is there solar activity / a solar storm", space-weather questions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
_apiKeyNoNASA API key (optional, defaults to DEMO_KEY)
end_dateNoEnd date YYYY-MM-DD (optional; default today).
start_dateNoStart date YYYY-MM-DD (optional; default ~30 days ago).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / examples
      Previous value: -[
      -  {
      -    "_apiKey": "your-nasa-api-key",
      -    "end_date": "2024-01-31",
      -    "start_date": "2024-01-01"
      -  }
      -]New value: +[
      +  {
      +    "end_date": "2024-01-31",
      +    "start_date": "2024-01-01"
      +  }
      +]
  2. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "_apiKey": "your-nasa-api-key",
      +    "end_date": "2024-01-31",
      +    "start_date": "2024-01-01"
      +  }
      +]
  3. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already cover the read-only, non-destructive, idempotent nature of the call. The description adds value by stating the data source (NASA DONKI), the exact returned attributes (flare class, begin/peak/end times, source region, active region number), and the 'recent' scoping. It does not mention rate limits or result ordering, but the annotation coverage lowers the burden.

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?

The description is compact and front-loaded: the first sentence states the verb, resource, and source; the second lists return fields; the third gives usage examples. There is no filler or redundant restatement of schema details.

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 simple 3-parameter schema and read-only annotations, the description covers the main invocation context: what data is returned and when the tool is appropriate. It does not describe the exact response envelope or array shape, but no output schema exists and the returned fields are already listed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the parameters start_date, end_date, and _apiKey are fully documented in the schema. The description adds no parameter-specific meaning beyond the schema, so the baseline 3 applies.

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?

The description states a clear verb and resource: 'Get recent solar flare events from NASA DONKI space-weather data' and enumerates the specific returned fields. It does not explicitly contrast with sibling DONKI tools like donki_cme or donki_geomagnetic_storms, so it lacks full sibling differentiation.

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

Usage Guidelines4/5

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

The description gives explicit query-phrase examples: use for 'recent solar flares', 'is there solar activity / a solar storm', and space-weather questions. It provides clear context for when the tool is appropriate, though it does not name alternatives or state when not to use it.

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.