Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
mapbox avatar

Mapbox Search Patterns

  • 1.2k installs
  • 71 repo stars
  • Updated August 4, 2026
  • mapbox/mapbox-agent-skills

mapbox-search-patterns is an agent skill that guides Mapbox search tool selection and parameters for geocoding, POI search, and reverse geocoding.

About

The mapbox-search-patterns skill guides agents on selecting Mapbox search tools for geocoding, POI discovery, and reverse geocoding tasks. search_and_geocode_tool fits named places, brands, and street addresses such as Starbucks on 5th Avenue or 123 Main Street. category_search_tool handles generic plural categories like coffee shops, museums, or EV chargers. reverse_geocode_tool converts GPS coordinates into human-readable addresses. Parameter guidance prioritizes proximity biasing for nearby queries, bbox for hard regional bounds, and country filters when appropriate. A decision matrix maps user phrasing to the correct tool and warns against using category search for brand names or geocode search for generic plurals. Additional sections cover autocomplete behavior, language settings, limit tuning, and common failure patterns. Use when optimizing Mapbox search tool choice and parameters in agent workflows.

  • Decision matrix for search_and_geocode vs category_search vs reverse_geocode.
  • Proximity biasing recommended for nearby and close-to location queries.
  • Separates brand or address queries from generic plural category searches.
  • Documents bbox and country constraints with usage examples.
  • Covers autocomplete, language, and limit parameter tuning guidance.

Mapbox Search Patterns by the numbers

  • 1,246 all-time installs (skills.sh)
  • +43 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #917 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

mapbox-search-patterns capabilities & compatibility

Capabilities
search tool selection matrix · proximity bbox and country parameter guidance · brand versus category query routing · reverse geocoding coordinate lookup · autocomplete and limit tuning patterns
Use cases
web search · orchestration
From the docs

What mapbox-search-patterns says it does

Expert guidance on choosing the right Mapbox search tool and parameters
SKILL.md
proximity (STRONGLY RECOMMENDED)
SKILL.md
npx skills add https://github.com/mapbox/mapbox-agent-skills --skill mapbox-search-patterns

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1.2k
repo stars71
Security audit3 / 3 scanners passed
Last updatedAugust 4, 2026
Repositorymapbox/mapbox-agent-skills

Which Mapbox search tool and parameters should I use for a brand lookup versus a generic nearby category query?

Choose Mapbox search_and_geocode, category_search, or reverse_geocode tools with correct proximity, bbox, and country parameters.

Who is it for?

Developers building agents that call Mapbox search tools for places, categories, or coordinate reverse lookups.

Skip if: Skip for non-Mapbox geocoders or map rendering styles unrelated to search APIs.

When should I use this skill?

User needs Mapbox geocoding, nearby category search, or coordinates-to-address reverse geocoding guidance.

What you get

Correct tool choice with proximity, bbox, or country settings aligned to the user location intent.

  • correct Mapbox search API calls
  • tuned geocoding parameters

Files

SKILL.mdMarkdownGitHub ↗

Mapbox Search Patterns Skill

Expert guidance for AI assistants on using Mapbox search tools effectively. Covers tool selection, parameter optimization, and best practices for geocoding, POI search, and location discovery.

Available Search Tools

1. search_and_geocode_tool

Best for: Specific places, addresses, brands, named locations

Use when query contains:

  • Specific names: "Starbucks on 5th Avenue", "Empire State Building"
  • Brand names: "McDonald's", "Whole Foods"
  • Addresses: "123 Main Street, Seattle", "1 Times Square"
  • Chain stores: "Target"
  • Cities/places: "San Francisco", "Portland"

Don't use for: Generic categories ("coffee shops", "museums")

2. category_search_tool

Best for: Generic place types, categories, plural queries

Use when query contains:

  • Generic types: "coffee shops", "restaurants", "gas stations"
  • Plural forms: "museums", "hotels", "parks"
  • Is-a phrases: "any coffee shop", "all restaurants", "nearby pharmacies"
  • Industry terms: "electric vehicle chargers", "ATMs"

Don't use for: Specific names or brands

3. reverse_geocode_tool

Best for: Converting coordinates to addresses, cities, towns, postcodes

Use when:

  • Have GPS coordinates, need human-readable address
  • Need to identify what's at a specific location
  • Converting user location to address

Tool Selection Decision Matrix

User QueryToolReasoning
"Find Starbucks on Main Street"search_and_geocode_toolSpecific brand name
"Find coffee shops nearby"category_search_toolGeneric category, plural
"What's at 37.7749, -122.4194?"reverse_geocode_toolCoordinates to address
"Empire State Building"search_and_geocode_toolSpecific named POI
"hotels in downtown Seattle"category_search_toolGeneric type + location
"Target store locations"search_and_geocode_toolBrand name (even plural)
"any restaurant near me"category_search_toolGeneric + "any" phrase
"123 Main St, Boston, MA"search_and_geocode_toolSpecific address
"electric vehicle chargers"category_search_toolIndustry category
"McDonald's"search_and_geocode_toolBrand name

Parameter Guidance

Proximity vs Bbox vs Country

Three ways to spatially constrain search results:

1. proximity (STRONGLY RECOMMENDED)

What it does: Biases results toward a location, but doesn't exclude distant matches

Use when:

  • User says "near me", "nearby", "close to"
  • Have a reference point but want some flexibility
  • Want results sorted by relevance to a point

Example:

{
  "q": "pizza",
  "proximity": {
    "longitude": -122.4194,
    "latitude": 37.7749
  }
}

Why this works: API returns SF pizza places first, but might include famous NYC pizzerias if highly relevant

Critical: Always set proximity when you have a reference location! Without it, results are IP-based or global.

2. bbox (Bounding Box)

What it does: Hard constraint - ONLY returns results within the box

Use when:

  • User specifies an area: "in downtown", "within this neighborhood"
  • Have a defined service area
  • Need to guarantee results are within bounds

Example:

{
  "q": "hotel",
  "bbox": [-122.51, 37.7, -122.35, 37.83] // [minLon, minLat, maxLon, maxLat]
}

Why this works: Guarantees all hotels are within SF's downtown area

Watch out: Too small = no results; too large = irrelevant results

3. country

What it does: Limits results to specific countries

Use when:

  • User specifies country: "restaurants in France"
  • Building country-specific features
  • Need to respect regional boundaries
  • Or it is otherwise clear they want results within a specific country

Example:

{
  "q": "Paris",
  "country": ["FR"] // ISO 3166 alpha-2 codes
}

Why this works: Finds Paris, France (not Paris, Texas)

Can combine: proximity + country + bbox or any combination of the three

Decision Matrix: Spatial Filters

ScenarioUseWhy
"Find coffee near me"proximityBias toward user location
"Coffee shops in downtown Seattle"proximity + bboxCenter on downtown, limit to area
"Hotels in France"countryHard country boundary
"Best pizza in San Francisco"proximity + country ["US"]Bias to SF, limit to US
"Gas stations along this route"bbox around routeHard constraint to route corridor
"Restaurants within 5 miles"proximity (then filter by distance)Bias nearby, filter results

Setting limit Parameter

category_search_tool only (1-25, default 10)

Use CaseLimitReasoning
Quick suggestions5Fast, focused results
Standard list10Default, good balance
Comprehensive search25Maximum allowed
Map visualization25Show all nearby options
Dropdown/autocomplete5Don't overwhelm UI

Performance tip: Lower limits = faster responses

types Parameter (search_and_geocode_tool)

Filter by feature type:

TypeWhat It IncludesUse When
poiPoints of interest (businesses, landmarks)Looking for POIs, not addresses
addressStreet addressesNeed specific address
placeCities, neighborhoods, regionsLooking for area/region
streetStreet names without numbersNeed street, not specific address
postcodePostal codesSearching by ZIP/postal code
districtDistricts, neighborhoodsArea-based search
localityTowns, villagesMunicipality search
countryCountry namesCountry-level search

Example combinations:

// Only POIs and addresses, no cities
{"q": "Paris", "types": ["poi", "address"]}
// Returns Paris Hotel, Paris Street, not Paris, France

// Only places (cities)
{"q": "Paris", "types": ["place"]}
// Returns Paris, France; Paris, Texas; etc.

Default behavior: All types included (usually what you want)

auto_complete Parameter (search_and_geocode_tool)

What it does: Enables partial/fuzzy matching

SettingBehaviorUse When
trueMatches partial words, typosUser typing in real-time
false (default)Exact matchingFinal query, not autocomplete

Example:

<!-- cspell:disable -->

// User types "starb"
{ "q": "starb", "auto_complete": true }
// Returns: Starbucks, Starboard Tavern, etc.

Use for:

  • Search-as-you-type interfaces
  • Handling typos ("mcdonalds" -> McDonald's)

<!-- cspell:enable -->

  • Incomplete queries

Don't use for:

  • Final/submitted queries (less precise)
  • When you need exact matches

Anti-Patterns to Avoid

Don't: Use category_search for brands

// BAD
category_search_tool({ category: 'starbucks' });
// "starbucks" is not a category, returns error

// GOOD
search_and_geocode_tool({ q: 'Starbucks' });

Don't: Use search_and_geocode for generic categories

// BAD
search_and_geocode_tool({ q: 'coffee shops' });
// Less precise, may return unrelated results

// GOOD
category_search_tool({ category: 'coffee_shop' });

Don't: Forget proximity for local searches

// BAD - Results may be anywhere globally
category_search_tool({ category: 'restaurant' });

// GOOD - Biased to user location
category_search_tool({
  category: 'restaurant',
  proximity: { longitude: -122.4194, latitude: 37.7749 }
});

Don't: Use bbox when you mean proximity

// BAD - Hard boundary may exclude good nearby results
search_and_geocode_tool({
  q: 'pizza',
  bbox: [-122.42, 37.77, -122.41, 37.78] // Tiny box
});

// GOOD - Bias toward point, but flexible
search_and_geocode_tool({
  q: 'pizza',
  proximity: { longitude: -122.4194, latitude: 37.7749 }
});

Don't: Request ETA unnecessarily

// BAD - Costs API quota for routing calculations
search_and_geocode_tool({
  q: 'museums',
  eta_type: 'navigation',
  navigation_profile: 'driving'
});
// User didn't ask for travel time!

// GOOD - Only add ETA when needed
search_and_geocode_tool({ q: 'museums' });
// If user asks "how long to get there?", then add ETA

Don't: Set limit too high for UI display

// BAD - Overwhelming for simple dropdown
category_search_tool({
  category: 'restaurant',
  limit: 25
});
// Returns 25 restaurants for a 5-item dropdown

// GOOD - Match UI needs
category_search_tool({
  category: 'restaurant',
  limit: 5
});

Quick Reference

Tool Selection Flowchart

User query contains...

-> Specific name/brand (Starbucks, Empire State Building)
  -> search_and_geocode_tool

-> Generic category/plural (coffee shops, museums, any restaurant)
  -> category_search_tool

-> Coordinates -> Address
  -> reverse_geocode_tool

-> Address -> Coordinates
  -> search_and_geocode_tool with types: ["address"]

Essential Parameters Checklist

For local searches, ALWAYS set:

  • proximity (or bbox if strict boundary needed)

For category searches, consider:

  • limit (match UI needs)
  • format (json_string if plotting on map)

For disambiguation, use:

  • country (when geographic context matters)
  • types (when feature type matters)

For travel-time ranking:

  • eta_type, navigation_profile, origin (costs API quota)

Common Mistakes

1. Forgetting proximity -> Results are global/IP-based 2. Using wrong tool -> category_search for "Starbucks" (use search_and_geocode) 3. Invalid category -> Check category_list first 4. Bbox too small -> No results; use proximity instead 5. Requesting ETA unnecessarily -> Adds API cost 6. Limit too high for UI -> Overwhelming user 7. Not filtering types -> Get cities when you want POIs

Reference Files

Load these for deeper guidance on specific topics:

  • `references/advanced-params.md` — poi_category, ETA, format, and language parameters
  • `references/workflows.md` — Common patterns: Near Me, Branded, Geocoding, Category+Area, Reverse, Route-Based, Multilingual
  • `references/optimization-combining.md` — Performance optimization, combining tools, handling no results, category list resource

Related skills

FAQ

When should I use category_search_tool?

For generic plural categories like coffee shops, museums, or EV chargers rather than named brands.

When should I use search_and_geocode_tool?

For specific addresses, brand names, and named POIs such as Empire State Building or McDonald's.

What parameter is recommended for nearby queries?

proximity biasing is strongly recommended to sort results toward a reference point.

Is Mapbox Search Patterns safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.