xpay tools logo
  • Tools
  • Collections
  • Skills
  • Docs
  • xpay.sh
Provider Skill
Mapbox logo

Mapbox

Geocoding, directions, isochrones, and map data via Mapbox

Raw SKILL.mdProvider Page

Mapbox

Geocoding, directions, isochrones, and map data via Mapbox

Available Tools (9)

  • version_tool: Get the current version information of the MCP server — $0.01/call
  • category_search_tool: Return all places that match a category (industry, amenity, or NAICS‑style code). Use when the user asks for a type of place, plural or generic terms like 'museums', 'coffee shops', 'electric‑vehicle chargers', or when the query includes is‑a phrases such as 'any', 'all', 'nearby'. Do not use when a unique name or brand is provided. Supports both JSON and text output formats. — $0.01/call
  • directions_tool: Fetches directions from Mapbox API based on provided coordinates and direction method. — $0.01/call
  • forward_geocode_tool: Forward geocode addresses, cities, towns, neighborhoods, districts, postcodes, regions, and countries using Mapbox Geocoding API v6. Converts location name into geographic coordinates. Setting a proximity point helps to bias results towards a specific area for more relevant results. Do not use this tool for geocoding points of interest like businesses, landmarks, historic sites, museums, etc. Supports both JSON and text output formats. — $0.01/call
  • isochrone_tool: Computes areas that are reachable within a specified amount of time from a location, and returns the reachable regions as contours of Polygons or LineStrings in GeoJSON format that you can display on a map. Common use cases:
    • Show a user how far they can travel in X minutes from their current location
    • Determine whether a destination is within a certain travel time threshold
    • Compare travel ranges for different modes of transportation' — $0.01/call
  • matrix_tool: Calculates travel times and distances between multiple points using Mapbox Matrix API. — $0.01/call
  • poi_search_tool: Find one specific place or brand location by its proper name or unique brand. Use only when the user's query includes a distinct title (e.g., "The Met", "Starbucks Reserve Roastery") or a brand they want all nearby branches of (e.g., "Macy's stores near me"). Do not use for generic place types such as 'museums', 'coffee shops', 'tacos', etc. Setting a proximity point is strongly encouraged for more relevant results. Always try to use a limit of at least 3 in case the user's intended result is not the first result. Supports both JSON and text output formats. — $0.01/call
  • reverse_geocode_tool: Find addresses, cities, towns, neighborhoods, postcodes, districts, regions, and countries around a specified geographic coordinate pair. Converts geographic coordinates (longitude, latitude) into human-readable addresses or place names. Use limit=1 for best results. This tool cannot reverse geocode businesses, landmarks, historic sites, and other points of interest that are not of the types mentioned. Supports both JSON and text output formats. — $0.01/call
  • static_map_image_tool: Generates a static map image from Mapbox Static Images API. Supports center coordinates, zoom level (0-22), image size (up to 1280x1280), various Mapbox styles, and overlays (markers, paths, GeoJSON). Returns PNG for vector styles, JPEG for raster-only styles. — $0.01/call

Quick Start

{
  "mcpServers": {
    "mapbox": {
      "url": "https://mapbox.mcp.xpay.sh/mcp?key=YOUR_XPAY_KEY"
    }
  }
}

Pricing

$0.01 per tool call. Pay per use from your XPay wallet. No subscriptions.

Get an API key at xpay.tools.

Tools: 9 Category: Maps & Transit

When to Use

Use Mapbox tools when you need to geocoding, directions, isochrones, and map data via mapbox. All tools are available through xpay✦'s single MCP connection.

MCP Connection

{
  "mcpServers": {
    "xpay": {
      "url": "https://mcp.xpay.sh/mcp?key=YOUR_API_KEY"
    }
  }
}

For Claude Code:

claude mcp add --transport http xpay "https://mcp.xpay.sh/mcp?key=YOUR_API_KEY"

Available Tools

  • Version Tool — Get the current version information of the MCP server — $0.01/call — SKILL.md
  • Category Search Tool — Return all places that match a category (industry, amenity, or NAICS‑style code). Use when the user asks for a type of place, plural or generic terms like 'museums', 'coffee shops', 'electric‑vehicle chargers', or when the query includes is‑a phrases such as 'any', 'all', 'nearby'. Do not use when a unique name or brand is provided. Supports both JSON and text output formats. — $0.01/call — SKILL.md
  • Directions Tool — Fetches directions from Mapbox API based on provided coordinates and direction method. — $0.01/call — SKILL.md
  • Forward Geocode Tool — Forward geocode addresses, cities, towns, neighborhoods, districts, postcodes, regions, and countries using Mapbox Geocoding API v6. Converts location name into geographic coordinates. Setting a proximity point helps to bias results towards a specific area for more relevant results. Do not use this tool for geocoding points of interest like businesses, landmarks, historic sites, museums, etc. Supports both JSON and text output formats. — $0.01/call — SKILL.md
  • Isochrone Tool — Computes areas that are reachable within a specified amount of time from a location, and returns the reachable regions as contours of Polygons or LineStrings in GeoJSON format that you can display on a map. Common use cases:
    • Show a user how far they can travel in X minutes from their current location
    • Determine whether a destination is within a certain travel time threshold
    • Compare travel ranges for different modes of transportation' — $0.01/call — SKILL.md
  • Matrix Tool — Calculates travel times and distances between multiple points using Mapbox Matrix API. — $0.01/call — SKILL.md
  • Poi Search Tool — Find one specific place or brand location by its proper name or unique brand. Use only when the user's query includes a distinct title (e.g., "The Met", "Starbucks Reserve Roastery") or a brand they want all nearby branches of (e.g., "Macy's stores near me"). Do not use for generic place types such as 'museums', 'coffee shops', 'tacos', etc. Setting a proximity point is strongly encouraged for more relevant results. Always try to use a limit of at least 3 in case the user's intended result is not the first result. Supports both JSON and text output formats. — $0.01/call — SKILL.md
  • Reverse Geocode Tool — Find addresses, cities, towns, neighborhoods, postcodes, districts, regions, and countries around a specified geographic coordinate pair. Converts geographic coordinates (longitude, latitude) into human-readable addresses or place names. Use limit=1 for best results. This tool cannot reverse geocode businesses, landmarks, historic sites, and other points of interest that are not of the types mentioned. Supports both JSON and text output formats. — $0.01/call — SKILL.md
  • Static Map Image Tool — Generates a static map image from Mapbox Static Images API. Supports center coordinates, zoom level (0-22), image size (up to 1280x1280), various Mapbox styles, and overlays (markers, paths, GeoJSON). Returns PNG for vector styles, JPEG for raster-only styles. — $0.01/call — SKILL.md

How to Execute

  1. xpay_discover — Search for tools: xpay_discover("mapbox")
  2. xpay_details — Get input schema: xpay_details("mapbox/TOOL_NAME")
  3. xpay_run — Execute: xpay_run("mapbox/TOOL_NAME", { ...inputs })
  4. xpay_balance — Check credits

Links

  • Provider page: https://xpay.tools/mapbox/
  • All providers: https://xpay.tools/explore
  • Docs: https://docs.xpay.sh
Tools (9)
Mapbox
Mapbox
Version Tool
version_tool

Get the current version information of the MCP server

$0.01/call
Mapbox
Mapbox
Category Search Tool
category_search_tool

Return all places that match a category (industry, amenity, or NAICS‑style code). Use when the user asks for a type of place, plural or generic terms like 'museums', 'coffee shops', 'electric‑vehicle chargers', or when the query includes is‑a phrases such as 'any', 'all', 'nearby'. Do not use when a unique name or brand is provided. Supports both JSON and text output formats.

$0.01/call
Mapbox
Mapbox
Directions Tool
directions_tool

Fetches directions from Mapbox API based on provided coordinates and direction method.

$0.01/call
Mapbox
Mapbox
Forward Geocode Tool
forward_geocode_tool

Forward geocode addresses, cities, towns, neighborhoods, districts, postcodes, regions, and countries using Mapbox Geocoding API v6. Converts location name into geographic coordinates. Setting a proximity point helps to bias results towards a specific area for more relevant results. Do not use this tool for geocoding points of interest like businesses, landmarks, historic sites, museums, etc. Supports both JSON and text output formats.

$0.01/call
Mapbox
Mapbox
Isochrone Tool
isochrone_tool

Computes areas that are reachable within a specified amount of time from a location, and returns the reachable regions as contours of Polygons or LineStrings in GeoJSON format that you can display on a map. Common use cases: - Show a user how far they can travel in X minutes from their current location - Determine whether a destination is within a certain travel time threshold - Compare travel ranges for different modes of transportation'

$0.01/call
Mapbox
Mapbox
Matrix Tool
matrix_tool

Calculates travel times and distances between multiple points using Mapbox Matrix API.

$0.01/call
Mapbox
Mapbox
Poi Search Tool
poi_search_tool

Find one specific place or brand location by its proper name or unique brand. Use only when the user's query includes a distinct title (e.g., "The Met", "Starbucks Reserve Roastery") or a brand they want all nearby branches of (e.g., "Macy's stores near me"). Do not use for generic place types such as 'museums', 'coffee shops', 'tacos', etc. Setting a proximity point is strongly encouraged for more relevant results. Always try to use a limit of at least 3 in case the user's intended result is not the first result. Supports both JSON and text output formats.

$0.01/call
Mapbox
Mapbox
Reverse Geocode Tool
reverse_geocode_tool

Find addresses, cities, towns, neighborhoods, postcodes, districts, regions, and countries around a specified geographic coordinate pair. Converts geographic coordinates (longitude, latitude) into human-readable addresses or place names. Use limit=1 for best results. This tool cannot reverse geocode businesses, landmarks, historic sites, and other points of interest that are not of the types mentioned. Supports both JSON and text output formats.

$0.01/call
Mapbox
Mapbox
Static Map Image Tool
static_map_image_tool

Generates a static map image from Mapbox Static Images API. Supports center coordinates, zoom level (0-22), image size (up to 1280x1280), various Mapbox styles, and overlays (markers, paths, GeoJSON). Returns PNG for vector styles, JPEG for raster-only styles.

$0.01/call
Install Skill
Claude Code
claude /install-skill https://xpay.tools/skills/mapbox/SKILL.md
CLI
npx @xpaysh/cli install mapbox
Manual
curl -o SKILL.md https://xpay.tools/skills/mapbox/SKILL.md
Details

Tools

9

Category

Maps & Transit

Total calls

0

xpay tools logo

Marketplace for AI Capabilities. Run agents, tools & prompts with pay-per-use micropayments.

or ask your AI app
Popular Tools
FirecrawlTavilyExaHunterPerplexityRecraftIdeogramFlux
Collections
AI Image & MediaContent & ResearchDev ToolsFinanceLead GenWeb ScrapingCompetitive Intel
Developers
DocumentationAPI ReferenceQuickstartSDKsSkillsskill.mdllms.txt
Resources
The Agentic EconomyAgentic CommerceAgent Frameworksx402 ProtocolBlog
Company
About xpayxpay.shGitHubDiscordTwitter / X

© 2026 Agentically Inc. All rights reserved.
Privacy PolicyTerms of Service