Data source: Open-Meteo, NOAA NWS, USGS, Climate TRACE
https://context.gnist.ai/mcp/environmental-monitoring/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (3)
search_environmental_dataSearch environmental data for a location across weather, alerts, earthquakes, and emissions.
Geocodes the location, then queries four sources in parallel:
- Open-Meteo — current weather conditions and air quality
- NOAA NWS — active weather alerts (US locations)
- USGS — recent earthquakes within 500km
- Climate TRACE — country-level greenhouse gas emissions
Examples:
search_environmental_data(location="Oslo")
search_environmental_data(location="San Francisco", limit=5)
search_environmental_data(location="Tokyo")
| Parameter | Type | Required | Description |
|---|---|---|---|
location | string | required | Location name — city, region, or country (e.g. 'Oslo', 'Tokyo', 'California'). |
limit | integer | optional | Max results per source. (default: 10) |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "search_environmental_data",
"arguments": {
"location": "NO"
}
}
}list_environmental_sourcesList all environmental monitoring data sources, their coverage, and data types.
Shows which weather services, alert systems, seismic networks, and emissions
databases are queried during an environmental monitoring search.
Examples:
list_environmental_sources()
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_environmental_sources",
"arguments": {}
}
}report_feedbackReport a bug, feature request, or general feedback for this data source.
Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.
Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "report_feedback",
"arguments": {
"feedback": "example"
}
}
}Quick Start
curl -X POST "https://context.gnist.ai/mcp/environmental-monitoring/" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "search_environmental_data", "arguments": {"location": "example"}}}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/mcp/environmental-monitoring/",
headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
json={
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "search_environmental_data",
"arguments": {
"location": "example"
}
}
},
)
print(resp.json())