Science
Data source: Open-Meteo, NOAA NWS, USGS, Climate TRACE
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"}}}'
REST API
API Root
https://context.gnist.ai/rest/environmental-monitoring/
3 endpoints available:
GET /rest/environmental-monitoring/search_environmental_dataGET /rest/environmental-monitoring/list_environmental_sourcesGET /rest/environmental-monitoring/report_feedback
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())
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_dataSearch environmental data for a location across weather, alerts, earthquakes, and emissions.
| 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) |
list_environmental_sourcesList all environmental monitoring data sources, their coverage, and data types.
report_feedbackReport a bug, feature request, or general feedback for this data source.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |