geotap-mcp-server 3.0.3 → 3.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.js +32 -1
- package/tests/comprehensive-test.js +0 -865
- package/tests/prompt-audit.js +0 -216
- package/tests/unit-tests.js +0 -594
- package/tests/workflow-tests.js +0 -940
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "geotap-mcp-server",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.5",
|
|
4
4
|
"description": "MCP server for GeoTap — collect comprehensive environmental data from 80+ US federal sources for any site. One tool, all the data.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
package/src/index.js
CHANGED
|
@@ -177,7 +177,38 @@ Data returned covers: flood zones, wetlands, soils, geology, contamination sites
|
|
|
177
177
|
|
|
178
178
|
server.tool(
|
|
179
179
|
'get_results',
|
|
180
|
-
`Check the status of a data collection job and retrieve results. Poll every 10 seconds until status is "completed".
|
|
180
|
+
`Check the status of a data collection job and retrieve results. Poll every 10 seconds until status is "completed".
|
|
181
|
+
|
|
182
|
+
When complete, present results as a SCANNABLE ENGINEERING DOCUMENT — not a data dump. An engineer needs to answer: (1) What kills the project? (2) What complicates permitting? (3) What's the baseline context?
|
|
183
|
+
|
|
184
|
+
CRITICAL FLAGS — scan results FIRST and lead with these if present:
|
|
185
|
+
- FEMA Zone AE/AO/VE or SFHA=true → "Site intersects SFHA — Zone [X]" (CRITICAL)
|
|
186
|
+
- Floodway present → "Regulatory floodway — no-rise certification required" (CRITICAL)
|
|
187
|
+
- Superfund count > 0 → "NPL Superfund site within search radius" (CRITICAL)
|
|
188
|
+
- Wetland count > 10 → "High wetland density — Section 404 permitting likely" (HIGH)
|
|
189
|
+
- 303(d) impaired water → "TMDL required, stricter discharge limits" (HIGH)
|
|
190
|
+
- Brownfields > 3 → "Phase I ESA recommended" (MODERATE)
|
|
191
|
+
- Soils with HSG D → "Poorly draining soils — stormwater design impact" (MODERATE)
|
|
192
|
+
|
|
193
|
+
SECTION ORDER (skip sections with no data):
|
|
194
|
+
1. Site overview — address, coordinates, county, elevation range, land cover, area
|
|
195
|
+
2. FEMA flood zones — table: zone | subtype | SFHA | risk level
|
|
196
|
+
3. Soils — per unit: HSG, drainage class, slope, flood frequency, building/septic limitations
|
|
197
|
+
4. Atlas 14 rainfall — IDF table (rows: 15min, 1hr, 6hr, 12hr, **24hr**, 3day; cols: 2yr–100yr). **Bold the 24hr row.** Include Atlas 14 volume.
|
|
198
|
+
5. Natural hazard risk — NRI ratings by hazard type
|
|
199
|
+
6. Wetlands — count, type breakdown, Section 404 note
|
|
200
|
+
7. Water resources — streams with distances, impaired waters
|
|
201
|
+
8. Contamination — Superfund, brownfields (with distances/status), USTs, NPDES
|
|
202
|
+
9. Seismic & dams — ASCE 7-22 params (SDS, SD1, SDC), nearby dams with hazard rating
|
|
203
|
+
10. Infrastructure — hospitals, fire stations, schools, EMS counts
|
|
204
|
+
11. Demographics — population, median income, vacancy rate
|
|
205
|
+
|
|
206
|
+
FORMATTING:
|
|
207
|
+
- Use markdown tables for flood zones, rainfall IDF, soils, brownfields
|
|
208
|
+
- Cite source agencies (FEMA, NRCS, NOAA Atlas 14, EPA) not just "GeoTap"
|
|
209
|
+
- Include distances and bearings for nearby features (e.g., "0.8 mi NW")
|
|
210
|
+
- "_noData: true" means queried but nothing found — mention where relevant ("no Superfund sites" is positive)
|
|
211
|
+
- End with: "Data sourced from US federal agencies via GeoTap. Verify critical findings before engineering or regulatory decisions."`,
|
|
181
212
|
{
|
|
182
213
|
jobId: z.string().describe('Job ID returned from collect_site_data'),
|
|
183
214
|
},
|