GnistAI GnistAI
Log in

Environmental Monitoring

Weather forecasts, severe weather alerts, earthquake reports, and greenhouse gas emissions data — all queryable by location through a single endpoint.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 3 tools tools 3 3 Science

Data source: Open-Meteo, NOAA NWS, USGS, Climate TRACE

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/environmental-monitoring/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-environmental-monitoring": {
      "url": "https://context.gnist.ai/mcp/environmental-monitoring/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
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"}}}'

API REST API

API Root https://context.gnist.ai/rest/environmental-monitoring/

3 endpoints available:

Shell
curl "https://context.gnist.ai/rest/environmental-monitoring/search_environmental_data?location=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/environmental-monitoring/search_environmental_data",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "location": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc environmental-monitoring

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (3)

search_environmental_data
Search environmental data for a location across weather, alerts, earthquakes, and emissions.
ParameterTypeRequiredDescription
locationstringrequiredLocation name — city, region, or country (e.g. 'Oslo', 'Tokyo', 'California').
limitintegeroptionalMax results per source. (default: 10)
list_environmental_sources
List all environmental monitoring data sources, their coverage, and data types.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related