Expert guidance for AI assistants on choosing the right geospatial tools from the Mapbox MCP Server. Focuses on selecting tools based on what the problem requires - geometric calculations vs routing, straight-line vs road network, and accuracy needs.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionmapbox-geospatial-operationsExecute the skills CLI command in your project's root directory to begin installation:
Fetches mapbox-geospatial-operations from mapbox/mapbox-agent-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate mapbox-geospatial-operations. Access via /mapbox-geospatial-operations in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
39
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
39
stars
Expert guidance for AI assistants on choosing the right geospatial tools from the Mapbox MCP Server. Focuses on selecting tools based on what the problem requires - geometric calculations vs routing, straight-line vs road network, and accuracy needs.
The Mapbox MCP Server provides two categories of geospatial tools:
The key question: What does the problem actually require?
| Problem Characteristic | Tool Category | Why |
|---|---|---|
| Straight-line distance (as the crow flies) | Offline geometric | Accurate for geometric distance |
| Road/path distance (as the crow drives) | Routing API | Only routing APIs know road networks |
| Travel time | Routing API | Requires routing with speed/traffic data |
| Point containment (is X inside Y?) | Offline geometric | Pure geometric operation |
| Geographic shapes (buffers, centroids, areas) | Offline geometric | Mathematical/geometric operations |
| Traffic-aware routing | Routing API | Requires real-time traffic data |
| Route optimization (best order to visit) | Routing API | Complex routing algorithm |
| High-frequency checks (e.g., real-time geofencing) | Offline geometric | Instant response, no latency |
User asks: "How far is X from Y?"
| What They Actually Mean | Tool Choice | Why |
|---|---|---|
| Straight-line distance (as the crow flies) | distance_tool |
Accurate for geometric distance, instant |
| Driving distance (as the crow drives) | directions_tool |
Only routing knows actual road distance |
| Walking/cycling distance (as the crow walks/bikes) | directions_tool |
Need specific path network |
| Travel time | directions_tool or matrix_tool |
Requires routing with speed data |
| Distance with current traffic | directions_tool (driving-traffic) |
Need real-time traffic consideration |
Example: "What's the distance between these 5 warehouses?"
distance_tool (10 calculations, instant)matrix_tool (5×5 matrix, one API call, returns actual route distances)Key insight: Use the tool that matches what "distance" means in context. Always clarify: crow flies or crow drives?
User asks: "Which points are near/inside this area?"
| Query Type | Tool Choice | Why |
|---|---|---|
| "Within X meters radius" | distance_tool + filter |
Simple geometric radius |
| "Within X minutes drive" | isochrone_tool → point_in_polygon_tool |
Need routing for travel-time zone, then geometric containment |
| "Inside this polygon" | point_in_polygon_tool |
Pure geometric containment test |
| "Reachable by car in 30 min" | isochrone_tool |
Requires routing + traffic |
| "Nearest to this point" | distance_tool (geometric) or matrix_tool (routed) |
Depends on definition of "nearest" |
Example: "Are these 200 addresses in our 30-minute delivery zone?"
isochrone_tool (routing API - need travel time)point_in_polygon_tool (geometric - 200 instant checks)Key insight: Routing for creating travel-time zones, geometric for containment checks
User asks: "What's the best route?"
| Scenario | Tool Choice | Why |
|---|---|---|
| A to B directions | directions_tool |
Turn-by-turn routing |
| Optimal order for multiple stops | optimization_tool |
Solves traveling salesman problem |
| Clean GPS trace | map_matching_tool |
Snaps to road network |
| Just need bearing/compass direction | bearing_tool |
Simple geometric calculation |
| Route with traffic | directions_tool (driving-traffic) |
Real-time traffic awareness |
| Fixed-order waypoints | directions_tool with waypoints |
Routing through specific points |
Example: "Navigate from hotel to airport"
directions_toolbearing_toolKey insight: Routing tools for actual navigation, geometric tools for directional info
User asks: "Create a zone around this location"
| Requirement | Tool Choice | Why |
|---|---|---|
| Simple circular buffer | buffer_tool |
Geometric circle/radius |
| Travel-time zone | isochrone_tool |
Based on routing network |
| Calculate area size | area_tool |
Geometric calculation |
| Simplify complex boundary | simplify_tool |
Geometric simplification |
| Find center of shape | centroid_tool |
Geometric centroid |
Example: "Show 5km coverage around each store"
buffer_tool (geometric circles)isochrone_tool (routing-based)Key insight: Geometric tools for distance-based zones, routing tools for time-based zones
Small operations (< 100 calculations):
Medium operations (100-1,000 calculations):
Large operations (> 1,000 calculations):
Key insight: Volume rarely affects geometric tool choice, but routing APIs have batch tools for efficiency
| Use Case | Approach | Tool Choice |
|---|---|---|
| Real-time geofencing (every second) | Geometric checks | point_in_polygon_tool (instant) |
| Route planning (one-time) | Full routing | directions_tool or optimization_tool |
| Periodic proximity checks | Geometric distance | distance_tool |
| Live traffic routing | Routing with traffic | directions_tool (driving-traffic) |
Architecture note for high-frequency geofencing: If the application calls containment checks at very high rates (e.g., 50 vehicles every 2 seconds = 25 checks/second), calling MCP tools over the network adds agent-reasoning overhead that makes it impractical. In those cases, recommend using Turf.js directly in-process (turf.booleanPointInPolygon) for the hot path, and reserve MCP tools for peripheral tasks like zone definition (isochrone_tool), rerouting (directions_tool), or visualization (static_map_image_tool).
User: "Find the closest store and show 5km coverage"
Optimal approach:
category_search_tool (returns distances automatically)buffer_tool (5km geometric circle)static_map_image_toolWhy: Search already gives distances; geometric buffer for simple radius
User: "Optimize delivery to 8 addresses / stops"
Optimal approach:
search_and_geocode_tool to convert any street addresses to coordinates. Even when coordinates are already provided, mention this as an optional pre-step — real-world delivery lists often contain a mix of addresses and coordinates.optimization_tool (TSP solver — reorders stops to minimize total drive time)Why optimization_tool and NOT these alternatives:
directions_tool only routes A → B (or through fixed-order waypoints). It does NOT reorder stops — if you pass 8 stops, it routes them in the order given, which is almost never optimal.matrix_tool gives travel times between all pairs of stops (8×8 = 64 values), but it does NOT compute the optimal ordering. You'd need to solve TSP yourself on top of the matrix — optimization_tool does this for you in one call.Always mention search_and_geocode_tool as a useful companion for geocoding delivery addresses before optimization.
User: "Which of these 200 addresses can we deliver to in 30 minutes?"
Optimal approach:
isochrone_tool (30-minute driving)point_in_polygon_tool (200 geometric checks)Why: Routing for accurate travel-time zone, geometric for fast containment checks
User: "How long was this bike ride?"
Optimal approach:
map_matching_tool (snap to bike paths)distance_toolWhy: Need road/path matching; distance calculation either way works
User: "What's our total service area?"
Optimal approach:
buffer_toolarea_toolisochrone_tool for each locationWhy: Geometric for distance-based coverage, routing for time-based
// WRONG: User asks "how long to drive there?"
distance_tool({ from: A, to: B });
// Returns 10km as the crow flies, but actual drive is 15km
// CORRECT: Need routing for driving distance
directions_tool({
coordinates: [
{ longitude: A[0], latitude: A[1] },
{ longitude: B[0], latitude: B[1] }
],
routing_profile: 'mapbox/driving'
});
// Returns actual road distance and drive time as the crow drives
Why wrong: As the crow flies ≠ as the crow drives
// WRONG: Check if point is in polygon
// (Can't do this with routing APIs)
// CORRECT: Pure geometric operation
point_in_polygon_tool({ point: location, polygon: boundary });
Why wrong: Routing APIs don't do geometric containment
// User asks: "What's reachable in 20 minutes?"
// WRONG: 20-minute distance at average speed
distance_tool + calculate 20min * avg_speed
// CORRECT: Actual routing with road network
isochrone_tool({
coordinates: {longitude: startLng, latitude: startLat},
contours_minutes: [20],
profile: "mapbox/driving"
})
Why wrong: Roads aren't straight lines; traffic varies
// User asks: "Which direction is the airport?"
// OVERCOMPLICATED: Full routing
directions_tool({
coordinates: [
{ longitude: hotel[0], latitude: hotel[1] },
{ longitude: airport[0], latitude: airport[1] }
]
});
// BETTER: Just need bearing
bearing_tool({ from: hotel, to: airport });
// Returns: "Northeast (45°)"
Why better: Simpler, instant, answers the actual question
Some problems benefit from using both geometric and routing tools:
1. directions_tool → Get route geometry
2. buffer_tool → Create corridor around route
3. category_search_tool → Find POIs in corridor
4. point_in_polygon_tool → Filter to those actually along route
Use case: "Find gas stations along my route"
1. category_search_tool → Find 10 nearby locations
2. distance_tool → Calculate straight-line distances (geometric)
3. For top 3, use directions_tool → Get actual driving time
Use case: Quickly narrow down, then get precise routing for finalists
1. isochrone_tool → Create travel-time zone (routing)
2. point_in_polygon_tool → Check hundreds of addresses (geometric)
Use case: "Which customers are in our delivery zone?"
When user asks a geospatial question:
1. Does it require routing, roads, or travel times?
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
mattpocock/skills
mapbox-geospatial-operations is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Keeps context tight: mapbox-geospatial-operations is the kind of skill you can hand to a new teammate without a long onboarding doc.
mapbox-geospatial-operations is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
mapbox-geospatial-operations is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Keeps context tight: mapbox-geospatial-operations is the kind of skill you can hand to a new teammate without a long onboarding doc.
Keeps context tight: mapbox-geospatial-operations is the kind of skill you can hand to a new teammate without a long onboarding doc.
mapbox-geospatial-operations reduced setup friction for our internal harness; good balance of opinion and flexibility.
Registry listing for mapbox-geospatial-operations matched our evaluation — installs cleanly and behaves as described in the markdown.
Registry listing for mapbox-geospatial-operations matched our evaluation — installs cleanly and behaves as described in the markdown.
mapbox-geospatial-operations reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 26