Geospatial MCP server for earthquake, tsunami, volcano, disaster, and FX data queries.
{
"mcpServers": {
"com-daedalmap-county-map": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Geospatial MCP server for earthquake, tsunami, volcano, disaster, and FX data queries.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Commit history unknown.
Will it work with my client?
Transport: . Compatibility not confirmed.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
🌱 Agricultural AI: Soil analysis, crop recommendations, weather forecasts. FREE TurboQuant.
Hierarchical markdown memory palace for AI agents — structured palace navigation via MCP tools.
Bounding box(bbox) GIS tool: coords conversion, EPSG, WKT, GeoJSON, H3, Overpass, POI, map viz
I Ching hexagram analysis and geographic feng shui for Taiwan locations
MCP Security Weekly
Get CVE alerts and security updates for com.daedalmap/county-map and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
DaedalMap is a map-first geographic query engine. It lets people ask place-based questions in natural language and get usable map results across disasters, demographics, economics, climate, and related public data.
Public surfaces:
https://app.daedalmap.comhttps://daedalmap.comThis repository is the open app/runtime. It is intended to be understandable and usable on its own: you can run it locally, point it at local or hosted data, and extend it with compatible datasets and pack-style workflows.
If you are using the public GitHub repo as a self-host/local runtime, the practical setup contract right now is:
DATA_ROOT, unless you use the default app-data path)OPENAI_API_KEY or ANTHROPIC_API_KEY)Supabase and hosted account wiring are optional for self-host use.
DaedalMap is built around three ideas:
Typical use cases:
DaedalMap now treats runtime behavior as a 2-axis matrix:
INSTALL_MODE
local = local app/runtime installcloud = hosted/server deploymentRUNTIME_MODE
local = query local datacloud = query managed cloud-backed data via local cache + DuckDB httpfsSupported combinations:
local install + local datalocal install + cloud datacloud install + cloud dataNot supported as a first-class runtime shape:
cloud install + local dataThe current hosted/runtime direction is:
Railway for the public app runtimeCloudflare R2 for canonical runtime data storageSupabase for auth and the future entitlement/control planeIn RUNTIME_MODE=cloud, the runtime:
httpfspublished/ namespace, not the mutable review laneAdmin/review surfaces may also read release markers from a separate control/
prefix so admin accounts can still see staging/review pack status even when the
runtime catalog in published/ is empty.
That means the same codebase can be used in:
Guest users can open the app and try the public workflow without logging in.
Logged-in users currently get:
daedalmap.comThe public app no longer owns the account/settings UI.
app.daedalmap.com stays focused on the runtime and map engine, while .com
owns login, account, billing, and admin/runtime control-plane views.
cd county-map
pip install -r requirements.txt
Create a .env file for local development. The minimum useful local setup is:
ANTHROPIC_API_KEY=your_key_here
DATA_ROOT=C:/path/to/your/local/data
You can use OPENAI_API_KEY instead of ANTHROPIC_API_KEY if that is your preferred provider.
If you leave DATA_ROOT blank, DaedalMap uses the default local app-data path and expects your data to live there.
If you want to test the hosted-style setup locally, also configure:
INSTALL_MODE=local
RUNTIME_MODE=cloud
S3_BUCKET=global-map-data
S3_PREFIX=published
S3_CONTROL_PREFIX=control
S3_ENDPOINT_URL=https://<account>.r2.cloudflarestorag
... [View full README on GitHub](https://github.com/xyver/daedal-map#readme)