Weather & Geo Intel MCP
Server Details
US weather & geo for AI agents: forecasts, alerts, earthquakes, elevation, geocoding. No keys.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- datakoot/weather-intel-mcp
- GitHub Stars
- 0
- Server Listing
- weather-intel-mcp
Available Tools
6 toolsearthquakesAInspect
List recent earthquakes worldwide from the USGS feed. Filter by minimum magnitude, look-back window in days, and optionally a bounding box or a point+radius (km). Returns magnitude, place, time, depth and coordinates.
| Name | Required | Description | Default |
|---|---|---|---|
| lat | No | Optional center latitude for a radius search. | |
| lon | No | Optional center longitude for a radius search. | |
| days | No | Look back this many days (default 7, max 30). | |
| limit | No | Maximum number of quakes to return. | |
| radius_km | No | Radius in km around lat/lon (requires lat+lon). | |
| min_magnitude | No | Only return quakes at or above this magnitude. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description takes on the full disclosure burden; it does reveal the data source, output fields, and available filters, which is solid. It does not discuss update cadence or default behavior, and the unsupported bounding-box claim is a behavioral inaccuracy that prevents a higher score.
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 tight sentences with the main verb and resource front-loaded, followed by filter and return-value detail. The structure is efficient, though the inaccurate 'bounding box' phrase is an avoidable addition.
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 no-output-schema tool, the description names the returned fields and the filters, and the schema supplies defaults and parameter meanings. However, the claimed bounding-box option is left completely unspecified in the schema, and units/ordering of results are not addressed, so the definition falls short of fully complete.
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 100%, so the parameter baseline is 3 and the schema already documents each property. The description maps 'look-back window' to days and 'point+radius (km)' to lat/lon/radius_km, but the mention of a bounding box has no corresponding properties, creating a misleading parameter expectation.
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 action (list), the resource (recent earthquakes from the USGS feed), and the domain, which is sharply distinct from the weather/elevation/geocode siblings. It loses a point because it advertises 'optionally a bounding box' even though the input schema has no bounding-box parameters.
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 use case is explicit: call this when you need recent earthquake data worldwide, and the sibling tools are unrelated enough that no exclusion list is necessary. There are no prerequisites or cautionary conditions stated, but none are obviously required for this read-only feed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
elevationAInspect
Get the ground elevation at a latitude/longitude within the US, from the USGS Elevation Point Query Service. Returns elevation in feet and meters.
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | Latitude in decimal degrees, e.g. 39.5883. US coverage only (USGS). | |
| lon | Yes | Longitude in decimal degrees, negative in the western hemisphere, e.g. -105.6438. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It does usefully name the external USGS service, state the US-only constraint, and specify the output units (feet and meters). However, it does not mention error behavior, data availability, precision, datum, or the fact that this is an external network call.
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?
A single, well-constructed sentence delivers the core action, the geographic scope, the data source, and the output units. There is 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?
For a simple two-parameter read-only tool, the description covers the essential context: what is returned, in what units, for what region, and from which service. It does not explain error handling or response structure, but the lack of an output schema is partially mitigated by stating that results include feet and meters.
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 input schema already provides 100% coverage of the lat and lon parameters with detailed descriptions including examples and hemisphere notes. The tool description adds no additional parameter semantics, so the baseline score of 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 names a specific verb ('Get'), a specific resource ('ground elevation'), and constrains the scope ('within the US', 'USGS Elevation Point Query Service'). This clearly differentiates it from the sibling tools, which are about weather, earthquakes, and geocoding.
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 states the US-only scope and the coordinate inputs, but it gives no explicit guidance on when to prefer this tool over alternatives or any when-not-to-use conditions. There is no mention of fallback tools or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
geocodeAInspect
Convert a US street address OR a city/town name into latitude/longitude coordinates, using US Census data. Accepts both '1600 Pennsylvania Ave NW, Washington DC' and 'Chicago, IL' - a place name returns the centroid of the city. Call this first whenever you have a location as text and need coordinates for the weather or elevation tools. US locations only.
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | A US street address ('1600 Pennsylvania Ave NW, Washington DC') or a city or town ('Chicago, IL', 'Springdale, Arkansas') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full behavioral burden. It usefully discloses the US Census data source, the fact that a city/town name returns the centroid, and the US-only scope. It could add more detail about failure modes or coordinate ordering, but the core behavior is transparent enough for a single-parameter 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?
Three sentences, front-loaded with the core purpose, followed by concrete examples and usage context. Every sentence adds value, and there is no redundant or filler text.
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 one-parameter tool with no output schema, the description covers accepted input forms, geographic scope, output type, and downstream usage context. Slight gaps remain around error handling and coordinate format, but these are not critical for an agent selecting and invoking the 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 input schema covers the parameter at 100%, so the baseline is 3. The description adds meaningful semantic detail beyond the schema by explaining that a place name resolves to the city centroid and by reinforcing the two accepted input forms with examples. This extra context helps an agent understand what values are valid.
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 a specific verb ('Convert') and resource ('US street address OR city/town name') with a concrete output ('latitude/longitude coordinates'). It also distinguishes itself from sibling location-related tools (weather, elevation, earthquakes) by positioning geocode as the coordinate lookup step.
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 explicit when-to-use guidance: 'Call this first whenever you have a location as text and need coordinates for the weather or elevation tools.' It also provides a clear exclusion with 'US locations only,' telling the agent 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.
weather_alertsAInspect
List active NWS weather alerts (warnings, watches, advisories) for a US state or marine area. Pass a two-letter state code like CA, TX, FL. Returns event type, severity, headline, affected area and expiry.
| Name | Required | Description | Default |
|---|---|---|---|
| area | Yes | Two-letter US state/territory code, e.g. CA, TX, FL, PR. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of disclosing behavior. It states this is a listing/read operation, restricts scope to active alerts, and lists the returned fields. Minor ambiguity remains around the 'marine area' mention conflicting with the two-letter state code instruction.
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?
Three concise sentences, each adding value: the tool's purpose, the required input format, and the expected return fields. No filler or redundant wording; the most important information is front-loaded.
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 single-parameter read-only tool with no output schema, the description provides enough to invoke it correctly and understand the response shape. The only real gap is the unresolved 'marine area' usage, which could mislead an agent into passing a marine zone identifier rather than a state code.
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 the schema already documents the 'area' parameter as a two-letter US state/territory code. The description adds useful examples (CA, TX, FL) and mentions marine areas, but does not substantially go beyond the schema or clarify the marine-area format.
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 a specific verb and resource: 'List active NWS weather alerts' for a US state or marine area. It also enumerates what the alerts include (warnings, watches, advisories) and what the response contains, making it easily distinguishable from siblings like weather_current and weather_forecast.
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 context for when to use the tool: to retrieve active NWS alerts. It provides concrete input examples and specifies the geographic scope, but it does not explicitly contrast this tool with sibling tools such as weather_forecast or weather_current.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
weather_currentAInspect
Get the latest observed weather conditions for a US location by latitude/longitude, from the nearest NWS observation station: temperature, humidity, wind, and text description.
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | Latitude in decimal degrees, e.g. 36.1867. US coverage only (National Weather Service). | |
| lon | Yes | Longitude in decimal degrees, negative in the western hemisphere, e.g. -94.1288. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the behavioral disclosure burden. It does disclose that the operation is read-only, the data source (NWS), and the output fields. However, it does not mention units, staleness, error behavior, or what happens when no station is near, which are relevant but not critical for invocation.
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 a single front-loaded sentence that packs in the verb, resource, scope, source, and outputs without any filler or redundant phrasing.
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 read-only tool with two well-documented parameters and no output schema, the description is nearly complete: it explains what it returns and from where. It lacks units and edge-case behavior, but these are not required to invoke 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?
Schema description coverage is 100%, and both lat and lon already have detailed descriptions, so the baseline is 3. The description adds no new parameter-level meaning beyond repeating the US location constraint already present in 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 names a specific verb ('Get'), a clear resource ('latest observed weather conditions'), and a specific scope ('US location by latitude/longitude, from the nearest NWS observation station'). It also enumerates the returned fields, making it immediately distinguishable from sibling tools like weather_forecast (observed vs forecast) and weather_alerts.
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 its use case: current observed weather for a US lat/lon. However, it does not explicitly name alternatives or state when not to use it, leaving the agent to infer the difference from weather_forecast based on the word 'observed' and the tool name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
weather_forecastAInspect
Get a multi-day weather forecast for a US location by latitude/longitude (National Weather Service). Returns named periods (Today, Tonight, ...) with temperature, wind, and a short + detailed forecast. Use geocode first if you only have an address.
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | Latitude in decimal degrees, e.g. 36.1867. US coverage only (National Weather Service). | |
| lon | Yes | Longitude in decimal degrees, negative in the western hemisphere, e.g. -94.1288. | |
| hourly | No | If true, return the hourly forecast instead of daily periods. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. It discloses that this is a read operation ('Get'), US-only coverage, NWS source, and the response contents (named periods, temperature, wind, short/detailed text). It does not mention limitations such as exact forecast horizon or units, but the essential behavior is 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?
Three short sentences, each earning its place: core action, expected return shape, and routing hint. No redundant filler or repetition of schema details.
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 low-complexity, read-only forecast tool with three parameters and no nested objects, the description plus fully covered schema gives an agent everything needed to select and call it correctly. The return content is described even though no output schema exists.
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 lat/lon already have decimal-degree and coverage context, and hourly has a default and behavior note. The description adds no parameter-level detail 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.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb ('Get'), resource ('multi-day weather forecast'), and required inputs (US lat/lon), and identifies the data source (National Weather Service). The return summary (named periods with temperature, wind, and short/detailed forecast) makes it easy to distinguish from siblings like weather_current and weather_alerts.
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?
Gives explicit routing guidance: use geocode first if only an address is available, which clearly states an important precondition. It does not explicitly name weather_current as the alternative for current conditions, though 'multi-day forecast' implies the distinction.
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. Dates show when Glama detected each change.
6 tool updates
- First observed
earthquakes - First observed
elevation - First observed
geocode - First observed
weather_alerts - First observed
weather_current - First observed
weather_forecast
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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!
Related MCP Connectors
US weather & geo for AI agents: forecasts, alerts, earthquakes, elevation, geocoding. No keys.
Get US weather forecasts, active alerts, and current observations.
Weather, climate, terrain, fire and flood risk data for any point or polygon on Earth. Free tier.
Real-time data API for AI Agents: stocks, weather, forex, logistics, search, scrape, news, IP.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceProvides weather forecasts and alerts for US locations via the National Weather Service API, enabling AI assistants to deliver real-time weather information.28-
- AlicenseBqualityDmaintenanceEnables AI assistants to access real-time US weather forecasts and alerts through the National Weather Service API.221MIT
- FlicenseNot gradedqualityCmaintenanceProvides real-time weather data, forecasts, alerts, and travel recommendations for US locations using the National Weather Service API, enabling agents to answer weather-related queries.-
- FlicenseBqualityCmaintenanceProvides weather data including US alerts, US forecasts, and global 5-day forecasts without requiring any API keys.31-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a distinct query type: seismic events, elevation, geocoding, weather alerts, current observations, and forecasts. There is no meaningful overlap, and the weather_current/weather_forecast/weather_alerts trio is clearly separated by description.
Tool names are lowercase and simple, with a clear weather_ prefix grouping the NWS-related tools. The main minor deviation is geocode being verb-style while earthquakes and elevation are noun-style, but the overall pattern remains predictable.
Six tools is a well-scoped size for a weather and geo intelligence server. Each tool earns its place and together they cover the major natural query categories without unnecessary overlap or bloat.
The server supports the core workflow of taking a text location, geocoding it, and then getting elevation, current weather, forecast, or earthquake data. Minor gaps like missing reverse geocoding or location-based alert search are workable but not critical.