Jiskta Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Jiskta Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
MCP server for the Jiskta Climate & Environmental Data API. Gives AI assistants direct access to historical air quality, ERA5 meteorology, water risk, geocoding, and industrial facility data — without writing any code.
Model Context Protocol is an open standard that lets AI tools (Claude Desktop, Cursor, Cline, Copilot Workspace) call external APIs in conversation. This package runs on your machine, not on any server — it just proxies calls to the Jiskta API using your API key.
Get an API key: jiskta.com/dashboard — free credits included on signup.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"jiskta": {
"command": "uvx",
"args": ["jiskta-mcp"],
"env": {
"JISKTA_API_KEY": "sk_live_your_key_here"
}
}
}
}No Python installation needed — uvx downloads and runs the package automatically.
Use the same config format your tool supports. The command is always uvx jiskta-mcp with JISKTA_API_KEY set.
pip install jiskta-mcp
export JISKTA_API_KEY=sk_live_...
jiskta-mcp| Tool | Description |
|---|---|
query_climate | Historical air quality + ERA5 met data for a bounding box |
query_climate_point | Same, for a single lat/lon point |
estimate_query_cost | Dry-run — check credit cost before querying |
geocode | Address → coordinates (113M housenumbers, global) |
reverse_geocode | Coordinates → nearest address |
enrich_location | Coordinate → NUTS3 region + WRI water risk + nearest facility |
water_risk | WRI Aqueduct 4.0 water risk for a bounding box |
find_facilities | Nearest E-PRTR industrial facilities within a radius |
get_coverage | Check available data months before querying |
spatial_link | Aggregate raster data to NUTS3 regions or countries |
Once connected, you can ask things like:
"What was the average NO₂ level in Brussels in 2023?"
"Is there any industrial pollution risk near Industrieweg 1, Antwerp?"
"Compare PM2.5 trends across NUTS3 regions in the Ruhr area from 2018 to 2023."
"What's the water stress level for our distribution centre at 51.5°N, 4.3°E?"
"How many days did PM10 exceed the EU limit in Paris last year?"
Credits are consumed per tile scanned (geographic area × time period × variable). Use estimate_query_cost before large queries. Top up at jiskta.com/dashboard.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.