# Space & Earth Science Explorer

## Links

- Product page URL: https://www.agentpmt.com/marketplace/space-earth-science-explorer
- Product markdown URL: https://www.agentpmt.com/marketplace/space-earth-science-explorer?format=agent-md
- Product JSON URL: https://www.agentpmt.com/marketplace/space-earth-science-explorer?format=agent-json

## Overview

- Product ID: 69865d55269243768b447e3b
- Vendor: Apoth3osis
- Type: data
- Unit type: request
- Price: 500 credits
- Categories: Data Science, Data Processing, Satellite & Aerial Imagery, Academic & Scientific Research, Public Records & Government Data, Environmental & Climate Data, Natural Disaster & Emergency Alerts
- Generated at: 2026-04-15T18:29:34.481Z

### Page Description

Explore the cosmos and our planet from your workflow. Search stunning space imagery, discover scientific datasets, track earthquake activity in real time, and tap into decades of earth observation and climate research. Whether you're building a research project, creating content, or just curious about what's happening in space and on Earth — this puts a universe of scientific data at your fingertips.

### Agent Description

Search and retrieve space imagery, scientific datasets, earthquake events, and earth observation data. Query by topic in natural language, filter by time period and source, and get clean structured results. Covers space missions, climate and weather data, geophysical events, and federal science archives.

## Details Tab

### Details

Explore the cosmos and our planet from your workflow. Search stunning space imagery, discover scientific datasets, track earthquake activity in real time, and tap into decades of earth observation and climate research. Whether you're building a research project, creating content, or just curious about what's happening in space and on Earth — this puts a universe of scientific data at your fingertips.

### Actions

- `query_space_science_data` (5 credits): Search across NASA, NOAA, and USGS public data sources using a natural-language query. Returns space imagery, scientific datasets, earthquake events, and earth observation records.

### Use Cases

Search space and astronomy imagery, Discover scientific research datasets, Track real-time earthquake activity, Explore climate and weather observation data, Find earth observation satellite imagery, Research space mission archives, Analyze geophysical and environmental trends

### Workflows Using This Tool

No public workflows currently reference this product.

### Related Content

No related content is currently linked to this product.

## Advanced Tab

### DynamicMCP

- Setup page URL: https://www.agentpmt.com/dynamic-mcp
- Claude setup guide: https://www.agentpmt.com/dynamic-mcp?platform=claude#videos
- ChatGPT setup guide: https://www.agentpmt.com/dynamic-mcp?platform=chatgpt#videos
- Cursor setup guide: https://www.agentpmt.com/dynamic-mcp?platform=cursor#videos
- Windsurf setup guide: https://www.agentpmt.com/dynamic-mcp?platform=windsurf#videos

STDIO connector for Claude Code, Codex, Cursor, Zed, and other LLMs that require STDIO or custom connections. This lightweight connector routes requests to `https://api.agentpmt.com/mcp`. All tool execution happens in the cloud and the server cannot edit any files on your computer.

```bash
npm install -g @agentpmt/mcp-router
agentpmt-setup
```

### REST API

The live page renders cURL, Python, JavaScript, and Node.js examples. Logged-in users see those examples prefilled with their own API and budget credentials.

- Purchase endpoint: https://api.agentpmt.com/products/purchase
- Authorization format: `Bearer <base64(apiKey:budgetKey)>`

```bash
curl -X POST "https://api.agentpmt.com/products/purchase" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer eW91ci1hcGkta2V5LWhlcmU6eW91ci1idWRnZXQta2V5LWhlcmU=" \
  -d '{
    "product_id": "69865d55269243768b447e3b",
    "parameters": {
      "action": "query_space_science_data",
      "query": "example_query",
      "source": "all",
      "limit": 20
    }
  }'
```

### Autonomous Agents

Do not use the abbreviated instructions in this product markdown for wallet-based invocation. Retrieve the full External Agent API markdown document instead.

- External Agent API page URL: https://www.agentpmt.com/external-agent-api
- External Agent API markdown URL: https://www.agentpmt.com/external-agent-api?format=agent-md

### Schema

#### Parameters

- Schema type: actions

```json
{
  "actions": {
    "query_space_science_data": {
      "description": "Search across NASA, NOAA, and USGS public data sources using a natural-language query. Returns space imagery, scientific datasets, earthquake events, and earth observation records.",
      "properties": {
        "query": {
          "type": "string",
          "description": "Natural-language query for space or science data.",
          "required": true
        },
        "source": {
          "type": "string",
          "description": "Preferred source filter. nasa = NASA Image Library and NASA datasets, noaa = NOAA climate/ocean/weather datasets, usgs = USGS earthquakes and DOI datasets, all = query all sources.",
          "required": false,
          "default": "all",
          "enum": [
            "nasa",
            "noaa",
            "usgs",
            "all"
          ]
        },
        "time_period": {
          "type": "string",
          "description": "Optional time period filter. Accepts 'latest', a single year like '2024', or a range like '2015:2024'.",
          "required": false
        },
        "limit": {
          "type": "integer",
          "description": "Maximum records to return.",
          "required": false,
          "default": 20,
          "minimum": 1,
          "maximum": 100
        }
      }
    }
  }
}
```

### Usage Instructions

# Space & Earth Science Explorer

## Overview
Search space imagery, scientific datasets, earthquake activity, and earth observation records from NASA, NOAA, and USGS. Supports natural-language queries, source filtering, time period ranges, and returns clean, structured results for research, content creation, or analysis. All data comes from public federal APIs requiring no user credentials.

## Actions

### query_space_science_data
Search across multiple federal science data sources using a natural-language query.

**Required Parameters:**
- `action` (string): Must be `"query_space_science_data"`
- `query` (string): Natural-language search query describing the data you want

**Optional Parameters:**
- `source` (string): Filter results to a specific agency. One of `"nasa"`, `"noaa"`, `"usgs"`, or `"all"`. Default: `"all"`
- `time_period` (string): Time filter. Accepts `"latest"`, a single year like `"2024"`, or a range like `"2015:2024"`. When omitted or set to `"latest"`, no year filtering is applied (USGS earthquakes default to the last 30 days)
- `limit` (integer): Maximum number of records to return. Range: 1-100. Default: 20

**Source Behavior:**
- `"nasa"` -- Searches the NASA Image Library for imagery and data.gov for NASA datasets
- `"noaa"` -- Searches data.gov for NOAA datasets (climate, ocean, weather)
- `"usgs"` -- Searches USGS earthquake events and data.gov for DOI/USGS datasets
- `"all"` -- Queries all three sources. The limit is split evenly across sources

**Earthquake Magnitude Filtering:**
Include magnitude hints in your query text using patterns like `"magnitude >= 4"`, `"mag:5"`, or `"mag>=6.0"` and the tool will automatically apply a minimum magnitude filter to USGS earthquake results.

**Example -- Search NASA for Mars rover images:**
```json
{
  "action": "query_space_science_data",
  "query": "mars rover images",
  "source": "nasa",
  "limit": 5
}
```

**Example -- Search NOAA for sea level data over a year range:**
```json
{
  "action": "query_space_science_data",
  "query": "sea level rise",
  "source": "noaa",
  "time_period": "2020:2025"
}
```

**Example -- Search USGS for earthquakes with magnitude filter:**
```json
{
  "action": "query_space_science_data",
  "query": "magnitude >= 4 earthquakes",
  "source": "usgs",
  "limit": 10
}
```

**Example -- Search all sources for solar flare activity in a specific year:**
```json
{
  "action": "query_space_science_data",
  "query": "solar flare activity",
  "time_period": "2024"
}
```

**Example -- Broad search across all sources with default settings:**
```json
{
  "action": "query_space_science_data",
  "query": "ocean temperature anomalies"
}
```

## Response Format

Each result in the `results` array contains:
- `source` -- Origin of the data (e.g., `"nasa_images"`, `"data_gov"`, `"usgs_earthquakes"`)
- `kind` -- Type of result: `"image"`, `"dataset"`, or `"event"`
- `agency` -- Originating agency name (e.g., `"NASA"`, `"USGS"`)
- `title` -- Title of the image, dataset, or event
- `description` -- Trimmed description (max 320 characters)

Additional fields vary by source:
- **NASA Images**: `date_created`, `nasa_id`, `preview_url`, `asset_manifest_url`
- **Data.gov Datasets**: `landing_page_url`, `resource_url`, `resource_format`, `metadata_modified`, `tags`
- **USGS Earthquakes**: `url`, `time`, `magnitude`, `place`, `tsunami`

The response also includes an `errors` array listing any upstream source failures, allowing partial results when some sources are unavailable.

## Suggested Workflows

1. **Research Briefing**: Query with `source: "all"` to gather imagery, datasets, and events on a topic, then compile into a summary
2. **Earthquake Monitoring**: Use `source: "usgs"` with magnitude filters in the query to monitor seismic activity for a region
3. **Climate Data Discovery**: Use `source: "noaa"` with time ranges to find datasets on ocean, weather, or atmospheric conditions
4. **Space Image Collection**: Use `source: "nasa"` to find space and astronomy imagery for presentations or content

## Notes
- When `source` is `"all"`, the `limit` is divided evenly across sources (e.g., limit of 20 with 3 sources gives roughly 7 results per source)
- Unrecognized `time_period` values are silently ignored (no filtering applied)
- If all upstream sources fail and no results are returned, the tool raises an error with details about the failures
- The tool uses publicly available federal APIs and does not require any API keys or credentials

### About The Developer

- Vendor name: Apoth3osis
- Website: apoth3osis.io

We build tools that enable AI agents to excel in the mathematical realm.

Our small team develops experimental and unique solutions in the AI arena, with a strong focus on modular computing for agentic applications and custom model deployment. We have handled projects for a variety of applications across many sectors, from algorithmic trading and financial analysis, to molecular simulations and predictions, to habitat and biodiversity monitoring and wildlife conservation.

### Frequently Asked Questions

No linked FAQs are currently available.

### Dependencies

This product has no public dependency products.