Remote OpenClaw
Menu
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Remote OpenClaw
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Skills/mapbox/mapbox-agent-skills/mapbox-search-integration
mapbox-search-integration logo

mapbox-search-integration

mapbox/mapbox-agent-skills
934 installs65 stars
Run it on Hostinger →up to 70% off + an extra 10% with code ZACAARON10Free API →

Installation

npx skills add https://github.com/mapbox/mapbox-agent-skills --skill mapbox-search-integration

Summary

Complete workflow for implementing Mapbox search in applications - from discovery questions to production-ready integration with best practices

SKILL.md

Mapbox Search Integration Skill

Expert guidance for implementing Mapbox search functionality in applications. Covers the complete workflow from asking the right discovery questions, selecting the appropriate search product, to implementing production-ready integrations following best practices from the Mapbox search team.

Use This Skill When

User says things like:

  • "I need to add search to my map"
  • "I need a search bar for my mapping app"
  • "How do I implement location search?"
  • "I want users to search for places/addresses"
  • "I need geocoding in my application"

This skill complements mapbox-search-patterns:

  • mapbox-search-patterns = Tool and parameter selection
  • mapbox-search-integration = Complete implementation workflow

Discovery Phase: Ask the Right Questions

Before jumping into code, ask these questions to understand requirements:

Question 1: What are users searching for?

Ask: "What do you want users to search for?"

Common answers and implications:

  • "Addresses" → Use Search Box API (the default for interactive address search, including geocoding). Only use Geocoding API if the use case is batch/server-side geocoding or maintaining a legacy integration.
  • "Points of interest / businesses" → POI search, use Search Box API with category search
  • "Both addresses and POIs" → Search Box API
  • "Specific types of POIs" (restaurants, hotels, etc.) → Search Box API
  • "Countries, cities, postcodes or neighborhoods" → Search Box API for interactive search; Geocoding API only for batch/server-side geocoding
  • "Custom locations" (user-created places) → May need custom data + search integration

Follow-up if not stated initially: "Are your users searching for points of interest data? Restaurants, stores, categories of businesses?"

Implications:

  • "Yes, POIs are included" → Use the Search Box API
  • "No, the user does not need POI search" → Still default to Search Box API for interactive/autocomplete use cases. Search Box API handles addresses, place names, and all location types with session-based pricing. Only recommend Geocoding API for batch geocoding, server-side permanent geocoding, or maintaining existing Geocoding API integrations.

Question 2: What's the geographic scope?

Ask: "Where will users be searching?"

Common answers and implications:

  • "Single country" (e.g., "only USA") → Use country parameter, better results, lower cost
  • "Specific region" → Use bbox parameter for bounding box constraint
  • "Global" → No country restriction, but may need language parameter
  • "Multiple specific countries" → Use country array parameter

Follow-up: "Do you need to limit results to a specific area?" (delivery zone, service area, etc.)

Question 3: What's the search interaction pattern?

Ask: "How will users interact with search?"

Common answers and implications:

  • "Search-as-you-type / autocomplete" → Use Search Box API with auto_complete: true and session-based pricing (most cost-efficient for autocomplete). Implement debouncing.
  • "Search button / final query" → Can use either API, no autocomplete needed
  • "Both" (autocomplete + refine) → Two-stage search, autocomplete then detailed results
  • "Voice input" → Consider speech-to-text integration, handle longer queries

Question 4: What platform?

Ask: "What platform is this for?"

Common answers and implications:

  • "Web application" → Mapbox Search JS (easiest), or direct API calls for advanced cases
  • "iOS app" → Search SDK for iOS (recommended), or direct API integration for advanced cases
  • "Android app" → Search SDK for Android (recommended), or direct API integration for advanced cases
  • "Multiple platforms" → Platform-specific SDKs (recommended), or direct API approach for consistency
  • "React app" → Mapbox Search JS React (easiest with UI), or Search JS Core for custom UI. Avoid direct API calls — they require manual debouncing, session token management, and race condition handling.
  • "Vue / Angular / Other framework" → Mapbox Search JS Core or Web. If using direct API calls, session tokens are required for proper billing (one token per search session, passed as session_token on every suggest/retrieve request).

Question 5: How will results be used?

Ask: "What happens when a user selects a result?"

Common answers and implications:

  • "Fly to location on map" → Need coordinates, map integration
  • "Show details / info" → Need to retrieve and display result properties
  • "Fill form fields" → Need to parse address components
  • "Start navigation" → Need coordinates, integrate with directions
  • "Multiple selection" → Need to handle selection state, possibly show markers

Question 6: Expected usage volume?

Ask: "How many searches do you expect per month?"

Implications:

  • Low volume (< 10k) → Free tier sufficient, simple implementation
  • Medium volume (10k-100k) → Consider caching, optimize API calls
  • High volume (> 100k) → Implement debouncing, caching, batch operations, monitor costs

Product Selection Decision Tree

Based on discovery answers, recommend the right product:

Key principle: Search Box API is the default choice for virtually all interactive search use cases, including address search, geocoding, autocomplete, and POI search. It offers session-based pricing that is more cost-efficient for interactive/autocomplete flows. Only recommend Geocoding API for the narrow cases listed below.

Search Box API (DEFAULT)

Use when (any of these):

  • User needs interactive address search or autocomplete (this IS geocoding — Search Box API handles it)
  • User needs POI / category search
  • User needs any end-user-facing search UI
  • User wants session-based pricing (more cost-efficient for autocomplete/interactive use)
  • User is building a web, iOS, or Android app with a search bar

Prefer SDKs over direct API calls for web integration:

  • Mapbox Search JS (SDK) - Recommended for web integration, with three components:
  • Search JS React - Easy search integration via React library with UI
  • Search JS Web - Easy search integration via Web Components with UI
  • Search JS Core - JavaScript (node or web) wrapper for API, build your own UI
  • Search Box API (REST) - Direct API integration, for advanced/custom cases
  • Search SDK for iOS - Native iOS integration
  • Search SDK for Android - Native Android integration

Geocoding API (SPECIALIZED)

Use ONLY when:

  • Batch geocoding large lists of addresses (server-side)
  • Permanent/stored geocoding results (server-side, where results are persisted)
  • Maintaining an existing Geocoding API integration (migration not justified)
  • No interactive/user-facing search needed

Do NOT recommend Geocoding API when:

  • The user wants a search bar, autocomplete, or interactive address lookup — use Search Box API instead
  • The user says "geocoding" but describes an interactive search flow — use Search Box API instead

Reference Files

Load the relevant reference based on the user's platform and needs:

  • Web (Search JS React / Web / Core / Direct API) → Load references/web-search-js.md
  • When: User is building a web app (vanilla JS, any framework except React-specific patterns)
  • React Integration → Load references/react-search.md
  • When: User is building a React app specifically
  • iOS → Load references/ios-search.md
  • When: User is building an iOS app (Swift/UIKit/SwiftUI)
  • Android → Load references/android-search.md
  • When: User is building an Android app (Kotlin/Java)
  • Node.js → Load references/nodejs-search.md
  • When: User needs server-side search (Express, serverless, backend API)
  • Best Practices → Load references/best-practices.md
  • When: Implementing search for the first time, or optimizing an existing implementation
  • Covers: debouncing, session tokens, geographic filtering, error handling, accessibility, caching, token security
  • Common Pitfalls → Load references/pitfalls.md
  • When: Debugging issues, reviewing code, or during code review
  • Covers: no debouncing, missing session tokens, no geo context, poor mobile UX, race conditions
  • Framework Hooks → Load references/framework-hooks.md
  • When: Building custom hooks (React) or composables (Vue) around Search JS Core
  • Testing and Monitoring → Load references/testing-monitoring.md
  • When: Writing tests or setting up production monitoring/analytics

Checklist: Production-Ready Search

Before launching, verify:

Configuration:

  • [ ] Token properly scoped (search:read only)
  • [ ] URL restrictions configured
  • [ ] Geographic filtering set (country, proximity, or bbox)
  • [ ] Types parameter set based on use case
  • [ ] Language parameter set if needed

Implementation:

  • [ ] Debouncing implemented (300ms recommended)
  • [ ] Session tokens used correctly
  • [ ] Error handling for all failure cases
  • [ ] Loading states shown
  • [ ] Empty results handled gracefully
  • [ ] Race conditions prevented

UX:

  • [ ] Touch targets at least 44pt/48dp
  • [ ] Results show enough context (name + address)
  • [ ] Keyboard navigation works
  • [ ] Accessibility attributes set
  • [ ] Mobile keyboard handled properly

Performance:

  • [ ] Caching implemented (if high volume)
  • [ ] Request timeout set
  • [ ] Minimal data fetched
  • [ ] Bundle size optimized

Testing:

  • [ ] Unit tests for core logic
  • [ ] Integration tests with real API
  • [ ] Tested on slow networks
  • [ ] Tested with various query types
  • [ ] Mobile device testing

Monitoring:

  • [ ] Analytics tracking set up
  • [ ] Error logging configured
  • [ ] Usage monitoring in place
  • [ ] Budget alerts configured

Integration with Other Skills

Works with:

  • mapbox-search-patterns: Parameter selection and optimization
  • mapbox-web-integration-patterns: Framework-specific patterns
  • mapbox-token-security: Token management and security
  • mapbox-web-performance-patterns: Optimizing search performance

Resources

  • Search Box API Documentation
  • Geocoding API Documentation
  • Mapbox Search JS
  • Search JS React
  • Search JS Web
  • Search JS Core
  • Search SDK for iOS
  • Search SDK for Android
  • Location Helper Tool - Calculate bounding boxes

Quick Decision Guide

User says: "I need location search"

  1. Ask discovery questions (Questions 1-6 above)
  2. Recommend product:
  • Search Box API (default for all interactive/user-facing search, including address geocoding)
  • Geocoding API only for batch/server-side/permanent geocoding
  • Platform SDK preferred (Search JS for web, native SDKs for mobile)
  1. Implement with:
  • ✅ Debouncing
  • ✅ Session tokens
  • ✅ Geographic filtering
  • ✅ Error handling
  • ✅ Good UX
  1. Test thoroughly
  2. Monitor in production

Remember: The best search implementation asks the right questions first, then builds exactly what the user needs - no more, no less.

Score

0–100
63/ 100

Grade

C

Popularity15/30

934 installs — growing adoption.

Completeness27/30

Documented: full SKILL.md body, description, one-line install. Missing: category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Mapbox Search Integration skill score badge previewScore badge

Markdown

[![Mapbox Search Integration skill](https://www.remoteopenclaw.com/skills/mapbox/mapbox-agent-skills/mapbox-search-integration/badges/score.svg)](https://www.remoteopenclaw.com/skills/mapbox/mapbox-agent-skills/mapbox-search-integration)

HTML

<a href="https://www.remoteopenclaw.com/skills/mapbox/mapbox-agent-skills/mapbox-search-integration"><img src="https://www.remoteopenclaw.com/skills/mapbox/mapbox-agent-skills/mapbox-search-integration/badges/score.svg" alt="Mapbox Search Integration skill"/></a>

Mapbox Search Integration FAQ

How do I install the Mapbox Search Integration skill?

Run “npx skills add https://github.com/mapbox/mapbox-agent-skills --skill mapbox-search-integration” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Mapbox Search Integration skill do?

Complete workflow for implementing Mapbox search in applications - from discovery questions to production-ready integration with best practices The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Mapbox Search Integration skill free?

Yes. Mapbox Search Integration is a free, open-source skill published from mapbox/mapbox-agent-skills. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Mapbox Search Integration work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Mapbox Search Integration works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
View on GitHub

Recommended skills

Browse all →
find-skills logo

find-skills

vercel-labs/skills

2.7M installsInstall
frontend-design logo

frontend-design

anthropics/skills

720K installsInstall
grill-me logo

grill-me

mattpocock/skills

701K installsInstall
agent-browser logo

agent-browser

vercel-labs/agent-browser

596K installsInstall
grill-with-docs logo

grill-with-docs

mattpocock/skills

594K installsInstall
vercel-react-best-practices logo

vercel-react-best-practices

vercel-labs/agent-skills

591K installsInstall

Browse

Skills by category

Frontend250Git198Data154Testing120Design105Docs103Security96Automation87Backend76Devops37Productivity29Mcp23

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideHow To Find The Right Openclaw Skill For Your ProjectGuideBest Openclaw Skills 2026GuideHow To Evaluate Openclaw Skill Before Installing

Remote OpenClaw

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

The Agent Stack: weekly agent tooling digest, free.

Explore

  • Home
  • Skills Directory
  • Claude Code Skills
  • Codex Skills
  • MCP Clients
  • Marketplace
  • Hermes Ecosystem
  • Free guide
  • Learn
  • OpenClaw for Creators
  • OpenClaw for Founders
  • Blog
  • The Agent Stack (Digest)

More

  • Submit a Tool
  • Advertise
  • Playbook
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy

Know a company that should advertise here? Refer them and earn 10% — up to $300 per referral.

© 2026 Remote OpenClaw
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed