Space Weather Data MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Space Weather Data MCP ServerWhat is the current space weather forecast?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Space Weather Data MCP Server
An MCP (Model Context Protocol) server that gives AI assistants access to real-time space weather data and forecasts from NOAA's Space Weather Prediction Center (SWPC).
What It Does
This server exposes NOAA's SWPC data services to any MCP-compatible AI client. The assistant can browse the data directory, fetch live observations and forecasts, look up product definitions, and interpret values using built-in space weather knowledge — all without leaving the conversation.
Tools (callable by the AI on demand):
Tool | Description |
| Curated map of the SWPC data server layout and notable files |
| Browse any directory on the SWPC data server |
| Fetch a JSON or text data file and return its contents |
| NOAA G/S/R storm scales and solar flare A–X classification |
| Catalog of all SWPC products with descriptions and data file paths |
| Fetch the full description of any SWPC product from the NOAA website |
| Field definitions and interpretation guide for key JSON data files |
Prompts (pre-built context bundles):
Prompt | Description |
| Fetches the 3-day forecast, geomagnetic forecast, forecast discussion, SGARF, and advisory outlook — combined into one block |
| Fetches the NOAA Planetary K-index (3-hour) and daily geomagnetic indices |
| Fetches the Kyoto Dst index (hourly) with an interpretation guide prepended |
Related MCP server: MCP TypeScript NASA Server
Data Source
All data comes from NOAA SWPC's public data server:
Data:
https://services.swpc.noaa.gov(JSON + text files, no API key required)Product info:
https://www.swpc.noaa.gov/products-and-data
No authentication is required. Data is provided by NOAA as a public service.
Requirements
Python 3.14+
uv (recommended) or pip
Installation
git clone https://github.com/JimFlannery/space-weather-data-mcp.git
cd space-weather-data-mcp
uv syncConfiguration
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"spaceweather": {
"command": "uv",
"args": [
"run",
"--directory",
"/absolute/path/to/space-weather-data-mcp",
"main.py"
]
}
}
}Config file locations:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
VS Code (Copilot / MCP extension)
Add to your VS Code settings.json:
{
"mcp.servers": {
"spaceweather": {
"command": "uv",
"args": [
"run",
"--directory",
"/absolute/path/to/space-weather-data-mcp",
"main.py"
]
}
}
}Development / Testing
Run the MCP Inspector to test tools and prompts interactively:
uv run mcp dev main.pyExample Queries
Once connected to an MCP client, you can ask things like:
"What is the current space weather forecast?"
"Is there a geomagnetic storm in progress? Check the Kp index."
"What are today's active solar regions and their flare probabilities?"
"Fetch the latest GOES X-ray flux and classify any solar flares."
"What does a Kp of 7 mean for power grids?"
"Show me the Dst index and explain whether we're in a storm's main phase or recovery phase."
Space Weather Scales Quick Reference
Scale | Measures | Range | Storm starts at |
G (Geomagnetic) | Kp index | G1–G5 | G1 (Kp = 5) |
S (Solar Radiation) | ≥10 MeV proton flux | S1–S5 | S1 (10 pfu) |
R (Radio Blackout) | X-ray flux (0.1–0.8 nm) | R1–R5 | R1 (M1 flare) |
Solar flares: A → B → C → M → X (each class is 10× stronger; X-class is open-ended).
Use the get_space_weather_scales tool for the full threshold and effects table.
License
MIT — see LICENSE.
Available Tools
7 toolsdescribe_productA
Fetch the full description of a SWPC product from the NOAA website.
Use list_products() to find product slugs. This tool fetches the live product page from www.swpc.noaa.gov and returns its explanatory text — useful for detailed interpretation guidance, methodology, and caveats.
Args: product_slug: The product URL slug, e.g. "planetary-k-index", "goes-x-ray-flux", "wsa-enlil-solar-wind-prediction".
Returns: Plain text extracted from the product's NOAA web page.
| Name | Required | Description | Default |
|---|---|---|---|
| product_slug | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of disclosing behavioral traits. It states the tool fetches a live product page and returns plain text, which implies a read-only network operation. It does not detail error handling or auth, but the core behavior is transparent. It slightly falls short of a 5 by not explicitly mentioning it does not modify anything, but 'fetch' strongly implies that.
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 well-structured with a clear opening sentence, a usage note, and explicit Args/Returns sections. Every sentence contributes value: purpose, prerequisite, behavior, and return format. It is appropriately sized for the tool's moderate complexity without wasted words.
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?
The description is complete given the tool's simplicity: one parameter, no nested objects, and an output schema (which covers return values). It explains what the tool does, how to use it, what input to provide, and what output to expect. It also provides contextual rationale ('useful for detailed interpretation guidance'). No significant gaps remain.
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 description coverage is 0%, so the description fully compensates. The only parameter, product_slug, is thoroughly explained: 'The product URL slug, e.g. "planetary-k-index"...' with concrete examples. This adds meaning well beyond the bare schema definition.
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 tool's function: 'Fetch the full description of a SWPC product from the NOAA website.' This specifies the verb (fetch), resource (SWPC product description), and outcome (full description). It distinguishes from siblings like list_products (which lists products) and get_data_file_info (which fetches data), making the purpose unambiguous.
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 explicitly advises to 'Use list_products() to find product slugs,' naming a sibling tool for a prerequisite step. It also clarifies when this tool is useful: 'for detailed interpretation guidance, methodology, and caveats.' This gives clear context and a direct alternative, meeting the 'when to use' requirement.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fetch_fileA
Fetch the content of a file from the SWPC data server.
JSON files are returned as parsed objects; all other files (plain text, etc.) are returned as a string.
Args: path: File path relative to the server root, e.g. "json/solar_regions.json" or "text/3-day-forecast.txt".
Returns: Parsed JSON (dict or list) for .json files, plain text string otherwise.
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It explains that JSON files are returned as parsed objects while other files are returned as strings, and it gives path conventions with examples. This is a useful behavioral trait beyond the bare schema. It does not mention error handling, but for a simple fetch tool this is reasonably transparent.
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 compact and well-structured, with a one-sentence summary followed by Args and Returns sections. Every sentence adds value: the purpose, the format behavior, the parameter explanation, and the return type. No fluff or repetition.
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 simple one-parameter tool with no output schema, the description covers the essential aspects: what it does, how the path works, and what the return type is. It lacks error behavior or file size limits, but these are not critical for a straightforward fetch operation. The explanation of parsed JSON vs string return is particularly useful.
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?
The schema provides only the parameter name and type with no description (0% coverage). The description fully compensates by explaining that 'path' is relative to the server root and provides concrete examples like 'json/solar_regions.json'. This adds significant meaning beyond the raw schema.
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 'Fetch the content of a file from the SWPC data server', which is a specific verb+resource. It distinguishes itself from siblings like list_directory and describe_product by focusing on retrieving raw file content rather than metadata or listings.
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 implicitly communicates when to use it: whenever you need the contents of a specific file. The context is clear from the verb 'Fetch' and the path parameter. It doesn't explicitly mention alternatives, but the purpose is distinct enough that no exclusions are needed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_data_file_infoA
Return field definitions and interpretation guidance for a known data file.
Use this tool before calling fetch_file() to understand what the data means, what each field represents, and how to interpret the values.
Args: path: The file path as used with fetch_file(), e.g. "json/planetary_k_index_1m.json" or "json/goes/primary/xrays-1-day.json".
Returns: A dict with description, fields, interpretation, and related files. If the path is not in the guide, returns a list of known paths.
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of disclosure. It explains the return structure (dict with description, fields, interpretation, related files) and the conditional behavior when a path is not found. This covers the main behavioral traits, though it omits details like error handling for malformed paths or access restrictions.
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 concise and well-organized: purpose, usage, argument, and return format. Every sentence adds value, and the structure is easy to scan.
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?
The tool has a single parameter, no annotations, and an output schema (though not detailed in the description). The description provides usage context, example paths, output structure, and fallback behavior, making it complete for selecting and invoking the tool correctly.
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?
The schema provides only 'path' as a string with no description. The description compensates fully by explaining the path must be the same as used with fetch_file() and provides concrete examples ('json/planetary_k_index_1m.json'). This adds critical meaning beyond the schema.
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 begins with 'Return field definitions and interpretation guidance for a known data file,' which clearly states a specific action and resource. It also distinguishes itself from siblings by explicitly saying 'Use this tool before calling fetch_file()' and by mentioning it returns related files.
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 provides clear guidance on when to use the tool ('Use this tool before calling fetch_file() to understand what the data means'), but it does not explicitly mention alternatives or exclusions. The fallback behavior of returning known paths hints at alternatives but doesn't name sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_space_weather_scalesA
Return the NOAA space weather scales and solar flare classification system.
Call this tool to understand how to interpret space weather severity. It returns:
The three NOAA scales used for all space weather products: G (Geomagnetic storms, Kp-based, 1–5) S (Solar Radiation Storms, proton flux-based, 1–5) R (Radio Blackouts, X-ray flux-based, 1–5)
Solar flare X-ray classification (A/B/C/M/X) with flux thresholds and the mapping to R-scale radio blackout levels.
Returns: Dict with keys "noaa_scales" and "solar_flare_classes".
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It discloses the return format and content in detail, including the G/S/R scales and solar flare classes. It does not explicitly state read-only status or lack of side effects, but the nature of a lookup tool makes this clear enough.
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 well-structured: a clear opening sentence, a bulleted breakdown of scales, and a final returns line. Every sentence carries useful information, with no redundancy or filler.
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?
This is a zero-parameter reference lookup with an output schema. The description provides all necessary context, naming the returned dictionary keys and the substantive contents of the NOAA scales and solar flare classes, making it fully complete for an agent to decide and invoke.
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?
The tool has zero parameters, so the baseline is 4. The description need not explain parameter meanings, and it compensates by describing the returned data structure in detail.
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 opens with a specific verb and resource: 'Return the NOAA space weather scales and solar flare classification system.' It clearly distinguishes this from sibling file/product tools by describing a reference lookup, and explains the exact content returned.
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 explicitly says 'Call this tool to understand how to interpret space weather severity,' giving clear context for when to use it. It does not mention alternatives or exclusions, but the sibling tools are unrelated, so no additional guidance is necessary.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_directoryA
List files and subdirectories at a path on the SWPC data server.
The server is organised as a browsable file tree rooted at https://services.swpc.noaa.gov. Top-level directories include json/, text/, products/, images/, experimental/, netcdf/, and static/.
Args: path: Directory path to list, e.g. "json/", "json/goes/", "text/". Leave empty (or pass "") to list the root.
Returns: A dict with two keys: "directories": list of subdirectory names (without trailing slash) "files": list of file names
| Name | Required | Description | Default |
|---|---|---|---|
| path | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the exact return structure ('dict with two keys'), the behavior for empty paths (list root), and the formatting of directory names (no trailing slash). It does not discuss error handling or permission issues, but for a simple listing operation, this is adequate.
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 well-structured with distinct sections for purpose, server context, arguments, and return value. Each part serves a purpose: the top-level directory examples help the agent form valid paths, and the return format avoids ambiguity. It is informative without being verbose.
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 listing tool with one optional parameter and an output schema present, the description is complete. It covers the root listing behavior, provides example paths, and explains the return value structure. No critical operational details are missing for the agent to invoke it correctly.
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 0% because the input schema lacks descriptions. The description compensates fully by explaining the 'path' parameter with examples ('json/', 'json/goes/') and specifying that empty string lists the root. This adds significant meaning beyond the bare schema.
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 states a specific action ('List files and subdirectories at a path') on a specific resource (the SWPC data server). It distinguishes itself from siblings like fetch_file, which retrieves file contents, and list_products, which lists products rather than arbitrary directory contents.
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 provides clear context on when to use the tool: browsing the server's file tree, with examples of top-level directories and path formats. It doesn't explicitly name alternative tools or exclusions, but the usage context is unambiguous enough for an agent to distinguish this from file-fetching or product-listing tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_known_pathsA
Return a curated map of notable paths and files on the SWPC data server.
Use this tool first to orient yourself before calling list_directory or fetch_file. The returned map groups paths by top-level directory and highlights commonly useful files.
Returns: A dict describing the server layout and selected files of interest.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that the tool returns a curated, grouped map and highlights useful files, which conveys read-only behavior and output structure. It stops short of explicitly stating 'no side effects' or auth requirements, but for a listing/orientation tool this is adequate.
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 concise and well-structured: a clear one-sentence purpose, a usage directive, and a brief Returns section. Every sentence adds value without redundancy or unnecessary length.
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 no parameters and an output schema is present, the description fully covers what an agent needs to select and invoke it correctly. It includes purpose, usage context, and output format, making it complete for this simple tool.
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?
The tool has zero parameters, and the description's baseline for parameter semantics is therefore 4. There is nothing to add beyond the schema, and the description appropriately focuses on purpose and output rather than parameter details.
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 uses a specific verb phrase 'Return a curated map of notable paths and files' and identifies the resource 'SWPC data server'. It clearly distinguishes the tool from siblings by stating it is a preliminary orientation tool, referencing list_directory and fetch_file as subsequent steps.
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?
Explicit guidance is provided: 'Use this tool first to orient yourself before calling list_directory or fetch_file.' This tells the agent exactly when to use the tool and names the alternatives, making tool selection unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_productsA
List SWPC space weather products, optionally filtered by category.
Each product entry includes its name, a description, and the data file paths on the SWPC data server where its data can be fetched.
Available categories: forecasts, reports, models, observations, summaries, alerts, experimental
Args: category: Optional category name to filter by (case-insensitive). Pass "" or omit to return all categories.
Returns: Dict mapping category names to lists of product dicts, each with keys: slug, name, description, data_paths.
| Name | Required | Description | Default |
|---|---|---|---|
| category | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of disclosure. It does well by specifying the return structure (dict mapping categories to lists of product dicts with slug, name, description, data_paths) and the filter semantics. It does not mention edge cases like invalid category input or error behavior, but for a simple list operation this is solid.
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 front-loaded with the purpose, followed by compact, well-organized sections for available categories, arguments, and return shape. Every sentence earns its place and there is no padding or repetition of schema information.
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 that this is a simple one-parameter list tool with an output schema and no annotations, this description provides everything an agent needs: clear purpose, filter behavior, return format, and category list. There are no significant gaps that would hinder selection or invocation.
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?
The schema only defines a defaulted string with no description, so the description fully compensates for 0% schema coverage. It explains that category is optional, case-insensitive, and that passing '' or omitting returns all categories. It also lists all valid category values, adding significant meaning beyond the schema.
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 opens with a specific verb and resource: 'List SWPC space weather products', and immediately adds the optional category filter. It states what each product entry includes (name, description, data paths), which clearly distinguishes it from sibling tools like list_directory or describe_product.
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 gives clear usage context for the category argument: optional, case-insensitive, and empty/omitted returns all categories. It also enumerates valid category values. However, it does not explicitly name alternative sibling tools or state when not to use this tool, so it stops short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
7 tool updates
v0.1.0- First observed
describe_product - First observed
fetch_file - First observed
get_data_file_info - First observed
get_space_weather_scales - First observed
list_directory - First observed
list_known_paths - First observed
list_products
TDQS
Scored across 7 tools
Each tool serves a distinct role: browsing directories, fetching files, orienting via curated paths, explaining scales, listing products, describing products, and explaining data formats. No two tools have overlapping purposes.
All tool names follow a consistent verb_noun pattern (list_directory, fetch_file, list_known_paths, get_space_weather_scales, list_products, describe_product, get_data_file_info) with clear verbs and nouns.
Seven tools is a well-scoped set for a data server browser and fetcher, covering navigation, fetching, and interpretation without redundancy or bloat.
The tool set covers the full workflow: orienting (list_known_paths), browsing (list_directory), fetching (fetch_file), interpreting data (get_data_file_info, get_space_weather_scales), and discovering/understanding products (list_products, describe_product). No obvious gaps exist.
Maintenance
Related MCP Connectors
NOAA Space Weather Prediction Center (solar wind, Kp, aurora, alerts)
Space weather: Kp index, solar flare flux, alerts. $0.01/query, free testnet funds.
NOAA SWPC space weather: storm scales, Kp index, aurora forecasts, solar wind, activity, alerts.
Space weather: Kp index, NOAA 3-day geomagnetic forecast, solar flares, aurora visibility.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables AI assistants to access real-time US weather forecasts and alerts through the National Weather Service API.26MIT
- AlicenseAqualityFmaintenanceProvides seamless integration with NASA's public APIs, enabling AI assistants to access space and astronomy data including APOD, Mars rover photos, Near-Earth Objects, space weather events, and Earth imagery.56MIT
- AlicenseAqualityCmaintenanceA Model Context Protocol server for space weather and geomagnetic conditions, enabling AI agents to answer queries about solar flares, solar wind, geomagnetic storms, aurora forecasts, and more from authoritative data.15MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to access real-time NOAA space weather data, including alerts, solar wind, K-index, aurora forecast, and GOES X-ray flux, through natural language queries.14MIT