Mapbox integration
Mapbox is a platform that provides mapping, navigation, and location data…
- Provider
- mapbox
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 32 available
Quick start
Call Mapbox from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Mapbox's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"MAPBOX_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Mapbox API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
32 actions exposed via the
Mapbox integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
MAPBOX_GEOCODE_BATCH_V6 -
MAPBOX_GEOCODE_FORWARD_V5 -
MAPBOX_GEOCODING_BATCH -
MAPBOX_GEOCODING_FORWARD -
MAPBOX_GEOCODING_PERMANENT_FORWARD -
MAPBOX_GEOCODING_PERMANENT_REVERSE -
MAPBOX_GEOCODING_REVERSE -
MAPBOX_GET_ACCESS_TOKEN -
MAPBOX_GET_ISOCHRONE -
MAPBOX_GET_MAP_MATCHING -
MAPBOX_GET_OPTIMIZATION_V1 -
MAPBOX_GET_SPRITE
Show all 32 actions
-
MAPBOX_GET_STATIC_IMAGE -
MAPBOX_GET_STATIC_TILES -
MAPBOX_GET_TOKEN -
MAPBOX_GET_VECTOR_TILES -
MAPBOX_POST_MAP_MATCHING -
MAPBOX_QUERY_TILE_FEATURES -
MAPBOX_REQUEST_STYLE_EMBED_HTML -
MAPBOX_RETRIEVE_DIRECTIONS -
MAPBOX_RETRIEVE_FONT_GLYPH_RANGES -
MAPBOX_RETRIEVE_MARKER -
MAPBOX_RETRIEVE_MATRIX -
MAPBOX_RETRIEVE_SEARCHBOX_PLACE -
MAPBOX_RETRIEVE_STYLE -
MAPBOX_RETRIEVE_STYLE_WMTS -
MAPBOX_RETRIEVE_TILESET_METADATA -
MAPBOX_REVERSE_GEOCODE_V6 -
MAPBOX_REVERSE_SEARCHBOX -
MAPBOX_SEARCH_BOX_FORWARD -
MAPBOX_SEARCH_CATEGORY -
MAPBOX_SUGGEST_SEARCHBOX
Build with Mapbox
Open OverSkill, describe what you want to build, and reference Mapbox in your prompt — the AI will wire up the integration automatically.