NASA Data
Server Details
NASA data: near-Earth objects, space weather, and astronomy pictures
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.6/5 across 3 of 3 tools scored.
Each tool targets a completely distinct domain: astronomy pictures, asteroid data, and space weather events. There is no overlap in functionality or ambiguity between them.
All tool names follow a consistent 'get_' prefix with descriptive noun phrases (apod, near_earth_objects, space_weather). The naming pattern is uniform and predictable.
Only 3 tools is on the lower end for a data-providing server, but each tool provides access to a well-known NASA API. The count is reasonable for a focused purpose, though slightly thin.
The tools cover three major NASA data sets (APOD, NeoWs, DONKI), which are core to the server's stated purpose. Missing common APIs like Mars Rover photos or Earth imagery, but the set is functional and not severely incomplete.
Available Tools
3 toolsget_apodAInspect
Get NASA Astronomy Picture of the Day. Returns image/video with title, explanation, and URLs.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Date YYYY-MM-DD (default: today) | |
| count | No | Get N random pictures (1-10, overrides date) | |
| thumbs | No | Include thumbnail URLs for videos |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the behavioral burden. It states the output but lacks details on rate limits, authentication, or error handling. For a simple read tool, this is adequate but not exceptional.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no unnecessary words or repetition. The description is efficiently front-loaded with the core purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and simple optional parameters, the description covers key aspects. It could mention the data source or default behavior, but is largely sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with each parameter described. The description adds no extra meaning beyond acknowledging return content, so it meets baseline but does not enhance parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get', the resource 'NASA Astronomy Picture of the Day', and the return type (image/video with title, explanation, URLs). It differentiates well from siblings like get_near_earth_objects and get_space_weather.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for retrieving APOD but does not provide explicit when-to-use or when-not-to-use guidance. No alternatives or exclusions are mentioned, leaving the agent to infer context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_near_earth_objectsAInspect
Get Near Earth Objects (asteroids) from NASA NeoWs. Returns asteroid data including size, hazard status, closest approach distance and velocity.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Start date YYYY-MM-DD (default: today) | |
| days | No | Number of days to fetch (1-7, default: 3) | |
| hazardous_only | No | Only return potentially hazardous asteroids (default: false) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; description only states what data is returned but does not disclose behavioral traits like rate limits, read-only nature, or update frequency. Minimal beyond basic functionality.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the main action. No filler or redundant information. Efficient and to the point.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with 3 parameters and no output schema, the description adequately covers purpose and returned data. Lacks mention of date format or edge cases, but sufficient for basic use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. Description mentions parameters (date, days, hazardous_only) but adds no extra meaning beyond what the schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states verb 'Get', resource 'Near Earth Objects', source 'NASA NeoWs', and lists returned data fields (size, hazard status, etc.). Distinguishes from sibling tools (APOD, space weather) by focusing on asteroids.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied from purpose, but no explicit guidance on when to use, prerequisites, or exclusions. Does not differentiate from siblings beyond the description itself.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_space_weatherAInspect
Get space weather events from NASA DONKI. Includes solar flares, coronal mass ejections (CME), and geomagnetic storms.
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | Number of days to look back (1-30, default: 7) | |
| type | No | Event type: solar_flare, cme, geomagnetic_storm, or all (default: all) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It states what events are included but fails to disclose any behavioral traits such as authentication requirements, rate limits, data freshness, pagination, or possible errors. This is insufficient for an API tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise with two sentences, no extraneous words, and the core purpose is front-loaded. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 2 parameters and no output schema, the description adequately names the source and event types but does not describe the return format or any limitations. It is somewhat complete but could be improved by noting what the response contains (e.g., lists of events with timestamps).
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% (both parameters described in schema). The description adds no new meaning beyond the schema; it mentions event types which map to the 'type' parameter but does not elaborate on days or default behavior. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and the resource 'space weather events from NASA DONKI', and lists specific event types (solar flares, CMEs, geomagnetic storms). It distinguishes the tool from sibling tools (get_apod, get_near_earth_objects) which cover different domains.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for retrieving space weather data but provides no explicit guidance on when to use this tool versus alternatives, nor does it mention when not to use it. Sibling tools are distinct, so no conflict, but guidelines are implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!