[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-mapbox-mapbox-mcp-runtime-patterns":3,"mdc--uolned-key":30,"related-org-mapbox-mapbox-mcp-runtime-patterns":1077,"related-repo-mapbox-mapbox-mcp-runtime-patterns":1247},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":26,"sourceUrl":28,"mdContent":29},"mapbox-mcp-runtime-patterns","integrate Mapbox MCP Server in AI apps","Integration patterns for Mapbox MCP Server in AI applications and agent frameworks. Covers runtime integration with pydantic-ai, mastra, LangChain, and custom agents. Use when building AI-powered applications that need geospatial capabilities.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"mapbox","Mapbox","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmapbox.png",[12,16,19],{"name":13,"slug":14,"type":15},"Architecture","architecture","tag",{"name":17,"slug":18,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},69,"https:\u002F\u002Fgithub.com\u002Fmapbox\u002Fmapbox-agent-skills","2026-04-06T18:28:55.164842",null,10,[],{"repoUrl":21,"stars":20,"forks":24,"topics":27,"description":23},[],"https:\u002F\u002Fgithub.com\u002Fmapbox\u002Fmapbox-agent-skills\u002Ftree\u002FHEAD\u002Fskills\u002Fmapbox-mcp-runtime-patterns","---\nname: mapbox-mcp-runtime-patterns\ndescription: Integration patterns for Mapbox MCP Server in AI applications and agent frameworks. Covers runtime integration with pydantic-ai, mastra, LangChain, and custom agents. Use when building AI-powered applications that need geospatial capabilities.\n---\n\n# Mapbox MCP Runtime Patterns\n\nThis skill provides patterns for integrating the Mapbox MCP Server into AI applications for production use with geospatial capabilities.\n\n## What is Mapbox MCP Server?\n\nThe [Mapbox MCP Server](https:\u002F\u002Fgithub.com\u002Fmapbox\u002Fmcp-server) is a Model Context Protocol (MCP) server that provides AI agents with geospatial tools:\n\n**Offline Tools (Turf.js):**\n\n- Distance, bearing, midpoint calculations\n- Point-in-polygon tests\n- Area, buffer, centroid operations\n- Bounding box, geometry simplification\n- No API calls, instant results\n\n**Mapbox API Tools:**\n\n- Directions and routing\n- Reverse geocoding\n- POI category search\n- Isochrones (reachability)\n- Travel time matrices\n- Static map images\n- GPS trace map matching\n- Multi-stop route optimization\n\n**Utility Tools:**\n\n- Server version info\n- POI category list\n\n**Key benefit:** Give your AI application geospatial superpowers without manually integrating multiple APIs.\n\n## Understanding Tool Categories\n\nBefore integrating, understand the key distinctions between tools to help your LLM choose correctly:\n\n### Distance: \"As the Crow Flies\" vs \"Along Roads\"\n\n**Straight-line distance** (offline, instant):\n\n- Tools: `distance_tool`, `bearing_tool`, `midpoint_tool`\n- Use for: Proximity checks, \"how far away is X?\", comparing distances\n- Example: \"Is this restaurant within 2 miles?\" → `distance_tool`\n\n**Route distance** (API, traffic-aware):\n\n- Tools: `directions_tool`, `matrix_tool`\n- Use for: Navigation, drive time, \"how long to drive?\"\n- Example: \"How long to drive there?\" → `directions_tool`\n\n### Search: Type vs Specific Place\n\n**Category\u002Ftype search**:\n\n- Tool: `category_search_tool`\n- Use for: \"Find coffee shops\", \"restaurants nearby\", browsing by type\n- Example: \"What hotels are near me?\" → `category_search_tool`\n\n**Specific place\u002Faddress**:\n\n- Tool: `search_and_geocode_tool`, `reverse_geocode_tool`\n- Use for: Named places, street addresses, landmarks\n- Example: \"Find 123 Main Street\" → `search_and_geocode_tool`\n\n### Travel Time: Area vs Route\n\n**Reachable area** (what's within reach):\n\n- Tool: `isochrone_tool`\n- Returns: GeoJSON polygon of everywhere reachable\n- Example: \"What can I reach in 15 minutes?\" → `isochrone_tool`\n\n**Specific route** (how to get there):\n\n- Tool: `directions_tool`\n- Returns: Turn-by-turn directions to one destination\n- Example: \"How do I get to the airport?\" → `directions_tool`\n\n### Cost & Performance\n\n**Offline tools** (free, instant):\n\n- No API calls, no token usage\n- Use whenever real-time data not needed\n- Examples: `distance_tool`, `point_in_polygon_tool`, `area_tool`\n\n**API tools** (requires token, counts against usage):\n\n- Real-time traffic, live POI data, current conditions\n- Use when accuracy and freshness matter\n- Examples: `directions_tool`, `category_search_tool`, `isochrone_tool`\n\n**Best practice:** Prefer offline tools when possible, use API tools when you need real-time data or routing.\n\n## Installation & Setup\n\n### Option 1: Hosted Server (Recommended)\n\n**Easiest integration** - Use Mapbox's hosted MCP server at:\n\n```\nhttps:\u002F\u002Fmcp.mapbox.com\u002Fmcp\n```\n\nNo installation required. Simply pass your Mapbox access token in the `Authorization` header.\n\n**Benefits:**\n\n- No server management\n- Always up-to-date\n- Production-ready\n- Lower latency (Mapbox infrastructure)\n\n**Authentication:**\n\nUse token-based authentication (standard for programmatic access):\n\n```\nAuthorization: Bearer your_mapbox_token\n```\n\n**Note:** The hosted server also supports OAuth, but that's primarily for interactive flows (coding assistants, not production apps).\n\n### Option 2: Self-Hosted\n\nFor custom deployments or development:\n\n```bash\nnpm install @mapbox\u002Fmcp-server\n```\n\nOr use directly via npx:\n\n```bash\nnpx @mapbox\u002Fmcp-server\n```\n\n**Environment setup:**\n\n```bash\nexport MAPBOX_ACCESS_TOKEN=\"your_token_here\"\n```\n\n## Reference Files\n\nDetailed integration patterns and production guidance are organized into reference files. Load the ones relevant to your task.\n\n- **Pydantic AI** -- Type-safe Python agents\n  Load: `references\u002Fpydantic-ai.md`\n\n- **CrewAI** -- Multi-agent orchestration\n  Load: `references\u002Fcrewai.md`\n\n- **Smolagents** -- Lightweight HuggingFace agents\n  Load: `references\u002Fsmolagents.md`\n\n- **Mastra** -- Multi-agent TypeScript systems\n  Load: `references\u002Fmastra.md`\n\n- **LangChain** -- Conversational AI with tool chaining\n  Load: `references\u002Flangchain.md`\n\n- **Custom Agent** -- Zillow\u002FTripAdvisor\u002FDoorDash-style patterns, architecture diagrams, hybrid approach\n  Load: `references\u002Fcustom-agent.md`\n\n- **Use Cases** -- Real Estate, Food Delivery, Travel Planning examples\n  Load: `references\u002Fuse-cases.md`\n\n- **Production Patterns** -- Caching, batch operations, tool descriptions, error handling, security, rate limiting, testing\n  Load: `references\u002Fproduction.md`\n\n## Resources\n\n- [Mapbox MCP Server](https:\u002F\u002Fgithub.com\u002Fmapbox\u002Fmcp-server)\n- [Model Context Protocol](https:\u002F\u002Fmodelcontextprotocol.io)\n- [Pydantic AI](https:\u002F\u002Fai.pydantic.dev\u002F)\n- [Mastra](https:\u002F\u002Fmastra.ai\u002F)\n- [LangChain](https:\u002F\u002Fdocs.langchain.com\u002Foss\u002Fjavascript\u002Flangchain\u002Foverview\u002F)\n- [Mapbox API Documentation](https:\u002F\u002Fdocs.mapbox.com\u002Fapi\u002F)\n\n## When to Use This Skill\n\nInvoke this skill when:\n\n- Integrating Mapbox MCP Server into AI applications\n- Building AI agents with geospatial capabilities\n- Architecting Zillow\u002FTripAdvisor\u002FDoorDash-style apps with AI\n- Choosing between MCP, direct APIs, or SDKs\n- Optimizing geospatial operations in production\n- Implementing error handling for geospatial AI features\n- Testing AI applications with geospatial tools\n",{"data":31,"body":32},{"name":4,"description":6},{"type":33,"children":34},"root",[35,43,49,56,72,81,111,119,162,170,183,193,199,204,211,221,266,276,311,317,327,356,365,400,406,416,444,454,481,487,497,534,544,578,588,594,600,610,622,635,643,666,674,679,688,698,704,709,741,746,765,773,816,822,827,958,964,1022,1028,1033,1071],{"type":36,"tag":37,"props":38,"children":39},"element","h1",{"id":4},[40],{"type":41,"value":42},"text","Mapbox MCP Runtime Patterns",{"type":36,"tag":44,"props":45,"children":46},"p",{},[47],{"type":41,"value":48},"This skill provides patterns for integrating the Mapbox MCP Server into AI applications for production use with geospatial capabilities.",{"type":36,"tag":50,"props":51,"children":53},"h2",{"id":52},"what-is-mapbox-mcp-server",[54],{"type":41,"value":55},"What is Mapbox MCP Server?",{"type":36,"tag":44,"props":57,"children":58},{},[59,61,70],{"type":41,"value":60},"The ",{"type":36,"tag":62,"props":63,"children":67},"a",{"href":64,"rel":65},"https:\u002F\u002Fgithub.com\u002Fmapbox\u002Fmcp-server",[66],"nofollow",[68],{"type":41,"value":69},"Mapbox MCP Server",{"type":41,"value":71}," is a Model Context Protocol (MCP) server that provides AI agents with geospatial tools:",{"type":36,"tag":44,"props":73,"children":74},{},[75],{"type":36,"tag":76,"props":77,"children":78},"strong",{},[79],{"type":41,"value":80},"Offline Tools (Turf.js):",{"type":36,"tag":82,"props":83,"children":84},"ul",{},[85,91,96,101,106],{"type":36,"tag":86,"props":87,"children":88},"li",{},[89],{"type":41,"value":90},"Distance, bearing, midpoint calculations",{"type":36,"tag":86,"props":92,"children":93},{},[94],{"type":41,"value":95},"Point-in-polygon tests",{"type":36,"tag":86,"props":97,"children":98},{},[99],{"type":41,"value":100},"Area, buffer, centroid operations",{"type":36,"tag":86,"props":102,"children":103},{},[104],{"type":41,"value":105},"Bounding box, geometry simplification",{"type":36,"tag":86,"props":107,"children":108},{},[109],{"type":41,"value":110},"No API calls, instant results",{"type":36,"tag":44,"props":112,"children":113},{},[114],{"type":36,"tag":76,"props":115,"children":116},{},[117],{"type":41,"value":118},"Mapbox API Tools:",{"type":36,"tag":82,"props":120,"children":121},{},[122,127,132,137,142,147,152,157],{"type":36,"tag":86,"props":123,"children":124},{},[125],{"type":41,"value":126},"Directions and routing",{"type":36,"tag":86,"props":128,"children":129},{},[130],{"type":41,"value":131},"Reverse geocoding",{"type":36,"tag":86,"props":133,"children":134},{},[135],{"type":41,"value":136},"POI category search",{"type":36,"tag":86,"props":138,"children":139},{},[140],{"type":41,"value":141},"Isochrones (reachability)",{"type":36,"tag":86,"props":143,"children":144},{},[145],{"type":41,"value":146},"Travel time matrices",{"type":36,"tag":86,"props":148,"children":149},{},[150],{"type":41,"value":151},"Static map images",{"type":36,"tag":86,"props":153,"children":154},{},[155],{"type":41,"value":156},"GPS trace map matching",{"type":36,"tag":86,"props":158,"children":159},{},[160],{"type":41,"value":161},"Multi-stop route optimization",{"type":36,"tag":44,"props":163,"children":164},{},[165],{"type":36,"tag":76,"props":166,"children":167},{},[168],{"type":41,"value":169},"Utility Tools:",{"type":36,"tag":82,"props":171,"children":172},{},[173,178],{"type":36,"tag":86,"props":174,"children":175},{},[176],{"type":41,"value":177},"Server version info",{"type":36,"tag":86,"props":179,"children":180},{},[181],{"type":41,"value":182},"POI category list",{"type":36,"tag":44,"props":184,"children":185},{},[186,191],{"type":36,"tag":76,"props":187,"children":188},{},[189],{"type":41,"value":190},"Key benefit:",{"type":41,"value":192}," Give your AI application geospatial superpowers without manually integrating multiple APIs.",{"type":36,"tag":50,"props":194,"children":196},{"id":195},"understanding-tool-categories",[197],{"type":41,"value":198},"Understanding Tool Categories",{"type":36,"tag":44,"props":200,"children":201},{},[202],{"type":41,"value":203},"Before integrating, understand the key distinctions between tools to help your LLM choose correctly:",{"type":36,"tag":205,"props":206,"children":208},"h3",{"id":207},"distance-as-the-crow-flies-vs-along-roads",[209],{"type":41,"value":210},"Distance: \"As the Crow Flies\" vs \"Along Roads\"",{"type":36,"tag":44,"props":212,"children":213},{},[214,219],{"type":36,"tag":76,"props":215,"children":216},{},[217],{"type":41,"value":218},"Straight-line distance",{"type":41,"value":220}," (offline, instant):",{"type":36,"tag":82,"props":222,"children":223},{},[224,251,256],{"type":36,"tag":86,"props":225,"children":226},{},[227,229,236,238,244,245],{"type":41,"value":228},"Tools: ",{"type":36,"tag":230,"props":231,"children":233},"code",{"className":232},[],[234],{"type":41,"value":235},"distance_tool",{"type":41,"value":237},", ",{"type":36,"tag":230,"props":239,"children":241},{"className":240},[],[242],{"type":41,"value":243},"bearing_tool",{"type":41,"value":237},{"type":36,"tag":230,"props":246,"children":248},{"className":247},[],[249],{"type":41,"value":250},"midpoint_tool",{"type":36,"tag":86,"props":252,"children":253},{},[254],{"type":41,"value":255},"Use for: Proximity checks, \"how far away is X?\", comparing distances",{"type":36,"tag":86,"props":257,"children":258},{},[259,261],{"type":41,"value":260},"Example: \"Is this restaurant within 2 miles?\" → ",{"type":36,"tag":230,"props":262,"children":264},{"className":263},[],[265],{"type":41,"value":235},{"type":36,"tag":44,"props":267,"children":268},{},[269,274],{"type":36,"tag":76,"props":270,"children":271},{},[272],{"type":41,"value":273},"Route distance",{"type":41,"value":275}," (API, traffic-aware):",{"type":36,"tag":82,"props":277,"children":278},{},[279,296,301],{"type":36,"tag":86,"props":280,"children":281},{},[282,283,289,290],{"type":41,"value":228},{"type":36,"tag":230,"props":284,"children":286},{"className":285},[],[287],{"type":41,"value":288},"directions_tool",{"type":41,"value":237},{"type":36,"tag":230,"props":291,"children":293},{"className":292},[],[294],{"type":41,"value":295},"matrix_tool",{"type":36,"tag":86,"props":297,"children":298},{},[299],{"type":41,"value":300},"Use for: Navigation, drive time, \"how long to drive?\"",{"type":36,"tag":86,"props":302,"children":303},{},[304,306],{"type":41,"value":305},"Example: \"How long to drive there?\" → ",{"type":36,"tag":230,"props":307,"children":309},{"className":308},[],[310],{"type":41,"value":288},{"type":36,"tag":205,"props":312,"children":314},{"id":313},"search-type-vs-specific-place",[315],{"type":41,"value":316},"Search: Type vs Specific Place",{"type":36,"tag":44,"props":318,"children":319},{},[320,325],{"type":36,"tag":76,"props":321,"children":322},{},[323],{"type":41,"value":324},"Category\u002Ftype search",{"type":41,"value":326},":",{"type":36,"tag":82,"props":328,"children":329},{},[330,341,346],{"type":36,"tag":86,"props":331,"children":332},{},[333,335],{"type":41,"value":334},"Tool: ",{"type":36,"tag":230,"props":336,"children":338},{"className":337},[],[339],{"type":41,"value":340},"category_search_tool",{"type":36,"tag":86,"props":342,"children":343},{},[344],{"type":41,"value":345},"Use for: \"Find coffee shops\", \"restaurants nearby\", browsing by type",{"type":36,"tag":86,"props":347,"children":348},{},[349,351],{"type":41,"value":350},"Example: \"What hotels are near me?\" → ",{"type":36,"tag":230,"props":352,"children":354},{"className":353},[],[355],{"type":41,"value":340},{"type":36,"tag":44,"props":357,"children":358},{},[359,364],{"type":36,"tag":76,"props":360,"children":361},{},[362],{"type":41,"value":363},"Specific place\u002Faddress",{"type":41,"value":326},{"type":36,"tag":82,"props":366,"children":367},{},[368,385,390],{"type":36,"tag":86,"props":369,"children":370},{},[371,372,378,379],{"type":41,"value":334},{"type":36,"tag":230,"props":373,"children":375},{"className":374},[],[376],{"type":41,"value":377},"search_and_geocode_tool",{"type":41,"value":237},{"type":36,"tag":230,"props":380,"children":382},{"className":381},[],[383],{"type":41,"value":384},"reverse_geocode_tool",{"type":36,"tag":86,"props":386,"children":387},{},[388],{"type":41,"value":389},"Use for: Named places, street addresses, landmarks",{"type":36,"tag":86,"props":391,"children":392},{},[393,395],{"type":41,"value":394},"Example: \"Find 123 Main Street\" → ",{"type":36,"tag":230,"props":396,"children":398},{"className":397},[],[399],{"type":41,"value":377},{"type":36,"tag":205,"props":401,"children":403},{"id":402},"travel-time-area-vs-route",[404],{"type":41,"value":405},"Travel Time: Area vs Route",{"type":36,"tag":44,"props":407,"children":408},{},[409,414],{"type":36,"tag":76,"props":410,"children":411},{},[412],{"type":41,"value":413},"Reachable area",{"type":41,"value":415}," (what's within reach):",{"type":36,"tag":82,"props":417,"children":418},{},[419,429,434],{"type":36,"tag":86,"props":420,"children":421},{},[422,423],{"type":41,"value":334},{"type":36,"tag":230,"props":424,"children":426},{"className":425},[],[427],{"type":41,"value":428},"isochrone_tool",{"type":36,"tag":86,"props":430,"children":431},{},[432],{"type":41,"value":433},"Returns: GeoJSON polygon of everywhere reachable",{"type":36,"tag":86,"props":435,"children":436},{},[437,439],{"type":41,"value":438},"Example: \"What can I reach in 15 minutes?\" → ",{"type":36,"tag":230,"props":440,"children":442},{"className":441},[],[443],{"type":41,"value":428},{"type":36,"tag":44,"props":445,"children":446},{},[447,452],{"type":36,"tag":76,"props":448,"children":449},{},[450],{"type":41,"value":451},"Specific route",{"type":41,"value":453}," (how to get there):",{"type":36,"tag":82,"props":455,"children":456},{},[457,466,471],{"type":36,"tag":86,"props":458,"children":459},{},[460,461],{"type":41,"value":334},{"type":36,"tag":230,"props":462,"children":464},{"className":463},[],[465],{"type":41,"value":288},{"type":36,"tag":86,"props":467,"children":468},{},[469],{"type":41,"value":470},"Returns: Turn-by-turn directions to one destination",{"type":36,"tag":86,"props":472,"children":473},{},[474,476],{"type":41,"value":475},"Example: \"How do I get to the airport?\" → ",{"type":36,"tag":230,"props":477,"children":479},{"className":478},[],[480],{"type":41,"value":288},{"type":36,"tag":205,"props":482,"children":484},{"id":483},"cost-performance",[485],{"type":41,"value":486},"Cost & Performance",{"type":36,"tag":44,"props":488,"children":489},{},[490,495],{"type":36,"tag":76,"props":491,"children":492},{},[493],{"type":41,"value":494},"Offline tools",{"type":41,"value":496}," (free, instant):",{"type":36,"tag":82,"props":498,"children":499},{},[500,505,510],{"type":36,"tag":86,"props":501,"children":502},{},[503],{"type":41,"value":504},"No API calls, no token usage",{"type":36,"tag":86,"props":506,"children":507},{},[508],{"type":41,"value":509},"Use whenever real-time data not needed",{"type":36,"tag":86,"props":511,"children":512},{},[513,515,520,521,527,528],{"type":41,"value":514},"Examples: ",{"type":36,"tag":230,"props":516,"children":518},{"className":517},[],[519],{"type":41,"value":235},{"type":41,"value":237},{"type":36,"tag":230,"props":522,"children":524},{"className":523},[],[525],{"type":41,"value":526},"point_in_polygon_tool",{"type":41,"value":237},{"type":36,"tag":230,"props":529,"children":531},{"className":530},[],[532],{"type":41,"value":533},"area_tool",{"type":36,"tag":44,"props":535,"children":536},{},[537,542],{"type":36,"tag":76,"props":538,"children":539},{},[540],{"type":41,"value":541},"API tools",{"type":41,"value":543}," (requires token, counts against usage):",{"type":36,"tag":82,"props":545,"children":546},{},[547,552,557],{"type":36,"tag":86,"props":548,"children":549},{},[550],{"type":41,"value":551},"Real-time traffic, live POI data, current conditions",{"type":36,"tag":86,"props":553,"children":554},{},[555],{"type":41,"value":556},"Use when accuracy and freshness matter",{"type":36,"tag":86,"props":558,"children":559},{},[560,561,566,567,572,573],{"type":41,"value":514},{"type":36,"tag":230,"props":562,"children":564},{"className":563},[],[565],{"type":41,"value":288},{"type":41,"value":237},{"type":36,"tag":230,"props":568,"children":570},{"className":569},[],[571],{"type":41,"value":340},{"type":41,"value":237},{"type":36,"tag":230,"props":574,"children":576},{"className":575},[],[577],{"type":41,"value":428},{"type":36,"tag":44,"props":579,"children":580},{},[581,586],{"type":36,"tag":76,"props":582,"children":583},{},[584],{"type":41,"value":585},"Best practice:",{"type":41,"value":587}," Prefer offline tools when possible, use API tools when you need real-time data or routing.",{"type":36,"tag":50,"props":589,"children":591},{"id":590},"installation-setup",[592],{"type":41,"value":593},"Installation & Setup",{"type":36,"tag":205,"props":595,"children":597},{"id":596},"option-1-hosted-server-recommended",[598],{"type":41,"value":599},"Option 1: Hosted Server (Recommended)",{"type":36,"tag":44,"props":601,"children":602},{},[603,608],{"type":36,"tag":76,"props":604,"children":605},{},[606],{"type":41,"value":607},"Easiest integration",{"type":41,"value":609}," - Use Mapbox's hosted MCP server at:",{"type":36,"tag":611,"props":612,"children":616},"pre",{"className":613,"code":615,"language":41},[614],"language-text","https:\u002F\u002Fmcp.mapbox.com\u002Fmcp\n",[617],{"type":36,"tag":230,"props":618,"children":620},{"__ignoreMap":619},"",[621],{"type":41,"value":615},{"type":36,"tag":44,"props":623,"children":624},{},[625,627,633],{"type":41,"value":626},"No installation required. Simply pass your Mapbox access token in the ",{"type":36,"tag":230,"props":628,"children":630},{"className":629},[],[631],{"type":41,"value":632},"Authorization",{"type":41,"value":634}," header.",{"type":36,"tag":44,"props":636,"children":637},{},[638],{"type":36,"tag":76,"props":639,"children":640},{},[641],{"type":41,"value":642},"Benefits:",{"type":36,"tag":82,"props":644,"children":645},{},[646,651,656,661],{"type":36,"tag":86,"props":647,"children":648},{},[649],{"type":41,"value":650},"No server management",{"type":36,"tag":86,"props":652,"children":653},{},[654],{"type":41,"value":655},"Always up-to-date",{"type":36,"tag":86,"props":657,"children":658},{},[659],{"type":41,"value":660},"Production-ready",{"type":36,"tag":86,"props":662,"children":663},{},[664],{"type":41,"value":665},"Lower latency (Mapbox infrastructure)",{"type":36,"tag":44,"props":667,"children":668},{},[669],{"type":36,"tag":76,"props":670,"children":671},{},[672],{"type":41,"value":673},"Authentication:",{"type":36,"tag":44,"props":675,"children":676},{},[677],{"type":41,"value":678},"Use token-based authentication (standard for programmatic access):",{"type":36,"tag":611,"props":680,"children":683},{"className":681,"code":682,"language":41},[614],"Authorization: Bearer your_mapbox_token\n",[684],{"type":36,"tag":230,"props":685,"children":686},{"__ignoreMap":619},[687],{"type":41,"value":682},{"type":36,"tag":44,"props":689,"children":690},{},[691,696],{"type":36,"tag":76,"props":692,"children":693},{},[694],{"type":41,"value":695},"Note:",{"type":41,"value":697}," The hosted server also supports OAuth, but that's primarily for interactive flows (coding assistants, not production apps).",{"type":36,"tag":205,"props":699,"children":701},{"id":700},"option-2-self-hosted",[702],{"type":41,"value":703},"Option 2: Self-Hosted",{"type":36,"tag":44,"props":705,"children":706},{},[707],{"type":41,"value":708},"For custom deployments or development:",{"type":36,"tag":611,"props":710,"children":714},{"className":711,"code":712,"language":713,"meta":619,"style":619},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install @mapbox\u002Fmcp-server\n","bash",[715],{"type":36,"tag":230,"props":716,"children":717},{"__ignoreMap":619},[718],{"type":36,"tag":719,"props":720,"children":723},"span",{"class":721,"line":722},"line",1,[724,730,736],{"type":36,"tag":719,"props":725,"children":727},{"style":726},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[728],{"type":41,"value":729},"npm",{"type":36,"tag":719,"props":731,"children":733},{"style":732},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[734],{"type":41,"value":735}," install",{"type":36,"tag":719,"props":737,"children":738},{"style":732},[739],{"type":41,"value":740}," @mapbox\u002Fmcp-server\n",{"type":36,"tag":44,"props":742,"children":743},{},[744],{"type":41,"value":745},"Or use directly via npx:",{"type":36,"tag":611,"props":747,"children":749},{"className":711,"code":748,"language":713,"meta":619,"style":619},"npx @mapbox\u002Fmcp-server\n",[750],{"type":36,"tag":230,"props":751,"children":752},{"__ignoreMap":619},[753],{"type":36,"tag":719,"props":754,"children":755},{"class":721,"line":722},[756,761],{"type":36,"tag":719,"props":757,"children":758},{"style":726},[759],{"type":41,"value":760},"npx",{"type":36,"tag":719,"props":762,"children":763},{"style":732},[764],{"type":41,"value":740},{"type":36,"tag":44,"props":766,"children":767},{},[768],{"type":36,"tag":76,"props":769,"children":770},{},[771],{"type":41,"value":772},"Environment setup:",{"type":36,"tag":611,"props":774,"children":776},{"className":711,"code":775,"language":713,"meta":619,"style":619},"export MAPBOX_ACCESS_TOKEN=\"your_token_here\"\n",[777],{"type":36,"tag":230,"props":778,"children":779},{"__ignoreMap":619},[780],{"type":36,"tag":719,"props":781,"children":782},{"class":721,"line":722},[783,789,795,801,806,811],{"type":36,"tag":719,"props":784,"children":786},{"style":785},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[787],{"type":41,"value":788},"export",{"type":36,"tag":719,"props":790,"children":792},{"style":791},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[793],{"type":41,"value":794}," MAPBOX_ACCESS_TOKEN",{"type":36,"tag":719,"props":796,"children":798},{"style":797},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[799],{"type":41,"value":800},"=",{"type":36,"tag":719,"props":802,"children":803},{"style":797},[804],{"type":41,"value":805},"\"",{"type":36,"tag":719,"props":807,"children":808},{"style":732},[809],{"type":41,"value":810},"your_token_here",{"type":36,"tag":719,"props":812,"children":813},{"style":797},[814],{"type":41,"value":815},"\"\n",{"type":36,"tag":50,"props":817,"children":819},{"id":818},"reference-files",[820],{"type":41,"value":821},"Reference Files",{"type":36,"tag":44,"props":823,"children":824},{},[825],{"type":41,"value":826},"Detailed integration patterns and production guidance are organized into reference files. Load the ones relevant to your task.",{"type":36,"tag":82,"props":828,"children":829},{},[830,846,862,878,894,910,926,942],{"type":36,"tag":86,"props":831,"children":832},{},[833,838,840],{"type":36,"tag":76,"props":834,"children":835},{},[836],{"type":41,"value":837},"Pydantic AI",{"type":41,"value":839}," -- Type-safe Python agents\nLoad: ",{"type":36,"tag":230,"props":841,"children":843},{"className":842},[],[844],{"type":41,"value":845},"references\u002Fpydantic-ai.md",{"type":36,"tag":86,"props":847,"children":848},{},[849,854,856],{"type":36,"tag":76,"props":850,"children":851},{},[852],{"type":41,"value":853},"CrewAI",{"type":41,"value":855}," -- Multi-agent orchestration\nLoad: ",{"type":36,"tag":230,"props":857,"children":859},{"className":858},[],[860],{"type":41,"value":861},"references\u002Fcrewai.md",{"type":36,"tag":86,"props":863,"children":864},{},[865,870,872],{"type":36,"tag":76,"props":866,"children":867},{},[868],{"type":41,"value":869},"Smolagents",{"type":41,"value":871}," -- Lightweight HuggingFace agents\nLoad: ",{"type":36,"tag":230,"props":873,"children":875},{"className":874},[],[876],{"type":41,"value":877},"references\u002Fsmolagents.md",{"type":36,"tag":86,"props":879,"children":880},{},[881,886,888],{"type":36,"tag":76,"props":882,"children":883},{},[884],{"type":41,"value":885},"Mastra",{"type":41,"value":887}," -- Multi-agent TypeScript systems\nLoad: ",{"type":36,"tag":230,"props":889,"children":891},{"className":890},[],[892],{"type":41,"value":893},"references\u002Fmastra.md",{"type":36,"tag":86,"props":895,"children":896},{},[897,902,904],{"type":36,"tag":76,"props":898,"children":899},{},[900],{"type":41,"value":901},"LangChain",{"type":41,"value":903}," -- Conversational AI with tool chaining\nLoad: ",{"type":36,"tag":230,"props":905,"children":907},{"className":906},[],[908],{"type":41,"value":909},"references\u002Flangchain.md",{"type":36,"tag":86,"props":911,"children":912},{},[913,918,920],{"type":36,"tag":76,"props":914,"children":915},{},[916],{"type":41,"value":917},"Custom Agent",{"type":41,"value":919}," -- Zillow\u002FTripAdvisor\u002FDoorDash-style patterns, architecture diagrams, hybrid approach\nLoad: ",{"type":36,"tag":230,"props":921,"children":923},{"className":922},[],[924],{"type":41,"value":925},"references\u002Fcustom-agent.md",{"type":36,"tag":86,"props":927,"children":928},{},[929,934,936],{"type":36,"tag":76,"props":930,"children":931},{},[932],{"type":41,"value":933},"Use Cases",{"type":41,"value":935}," -- Real Estate, Food Delivery, Travel Planning examples\nLoad: ",{"type":36,"tag":230,"props":937,"children":939},{"className":938},[],[940],{"type":41,"value":941},"references\u002Fuse-cases.md",{"type":36,"tag":86,"props":943,"children":944},{},[945,950,952],{"type":36,"tag":76,"props":946,"children":947},{},[948],{"type":41,"value":949},"Production Patterns",{"type":41,"value":951}," -- Caching, batch operations, tool descriptions, error handling, security, rate limiting, testing\nLoad: ",{"type":36,"tag":230,"props":953,"children":955},{"className":954},[],[956],{"type":41,"value":957},"references\u002Fproduction.md",{"type":36,"tag":50,"props":959,"children":961},{"id":960},"resources",[962],{"type":41,"value":963},"Resources",{"type":36,"tag":82,"props":965,"children":966},{},[967,975,985,994,1003,1012],{"type":36,"tag":86,"props":968,"children":969},{},[970],{"type":36,"tag":62,"props":971,"children":973},{"href":64,"rel":972},[66],[974],{"type":41,"value":69},{"type":36,"tag":86,"props":976,"children":977},{},[978],{"type":36,"tag":62,"props":979,"children":982},{"href":980,"rel":981},"https:\u002F\u002Fmodelcontextprotocol.io",[66],[983],{"type":41,"value":984},"Model Context Protocol",{"type":36,"tag":86,"props":986,"children":987},{},[988],{"type":36,"tag":62,"props":989,"children":992},{"href":990,"rel":991},"https:\u002F\u002Fai.pydantic.dev\u002F",[66],[993],{"type":41,"value":837},{"type":36,"tag":86,"props":995,"children":996},{},[997],{"type":36,"tag":62,"props":998,"children":1001},{"href":999,"rel":1000},"https:\u002F\u002Fmastra.ai\u002F",[66],[1002],{"type":41,"value":885},{"type":36,"tag":86,"props":1004,"children":1005},{},[1006],{"type":36,"tag":62,"props":1007,"children":1010},{"href":1008,"rel":1009},"https:\u002F\u002Fdocs.langchain.com\u002Foss\u002Fjavascript\u002Flangchain\u002Foverview\u002F",[66],[1011],{"type":41,"value":901},{"type":36,"tag":86,"props":1013,"children":1014},{},[1015],{"type":36,"tag":62,"props":1016,"children":1019},{"href":1017,"rel":1018},"https:\u002F\u002Fdocs.mapbox.com\u002Fapi\u002F",[66],[1020],{"type":41,"value":1021},"Mapbox API Documentation",{"type":36,"tag":50,"props":1023,"children":1025},{"id":1024},"when-to-use-this-skill",[1026],{"type":41,"value":1027},"When to Use This Skill",{"type":36,"tag":44,"props":1029,"children":1030},{},[1031],{"type":41,"value":1032},"Invoke this skill when:",{"type":36,"tag":82,"props":1034,"children":1035},{},[1036,1041,1046,1051,1056,1061,1066],{"type":36,"tag":86,"props":1037,"children":1038},{},[1039],{"type":41,"value":1040},"Integrating Mapbox MCP Server into AI applications",{"type":36,"tag":86,"props":1042,"children":1043},{},[1044],{"type":41,"value":1045},"Building AI agents with geospatial capabilities",{"type":36,"tag":86,"props":1047,"children":1048},{},[1049],{"type":41,"value":1050},"Architecting Zillow\u002FTripAdvisor\u002FDoorDash-style apps with AI",{"type":36,"tag":86,"props":1052,"children":1053},{},[1054],{"type":41,"value":1055},"Choosing between MCP, direct APIs, or SDKs",{"type":36,"tag":86,"props":1057,"children":1058},{},[1059],{"type":41,"value":1060},"Optimizing geospatial operations in production",{"type":36,"tag":86,"props":1062,"children":1063},{},[1064],{"type":41,"value":1065},"Implementing error handling for geospatial AI features",{"type":36,"tag":86,"props":1067,"children":1068},{},[1069],{"type":41,"value":1070},"Testing AI applications with geospatial tools",{"type":36,"tag":1072,"props":1073,"children":1074},"style",{},[1075],{"type":41,"value":1076},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1078,"total":1246},[1079,1093,1110,1125,1147,1159,1173,1186,1198,1211,1226,1232],{"slug":1080,"name":1080,"fn":1081,"description":1082,"org":1083,"tags":1084,"stars":20,"repoUrl":21,"updatedAt":1092},"mapbox-android-patterns","integrate Mapbox Maps SDK on Android","Official integration patterns for Mapbox Maps SDK on Android. Covers installation, adding markers, user location, custom data, styles, camera control, and featureset interactions. Based on official Mapbox documentation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1085,1088,1089],{"name":1086,"slug":1087,"type":15},"Android","android",{"name":9,"slug":8,"type":15},{"name":1090,"slug":1091,"type":15},"Mobile","mobile","2026-07-30T05:30:51.739352",{"slug":1094,"name":1094,"fn":1095,"description":1096,"org":1097,"tags":1098,"stars":20,"repoUrl":21,"updatedAt":1109},"mapbox-cartography","apply cartographic design principles to Mapbox","Expert guidance on map design principles, color theory, visual hierarchy, typography, and cartographic best practices for creating effective and beautiful maps with Mapbox. Use when designing map styles, choosing colors, or making cartographic decisions.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1099,1102,1105,1106],{"name":1100,"slug":1101,"type":15},"Branding","branding",{"name":1103,"slug":1104,"type":15},"Design","design",{"name":9,"slug":8,"type":15},{"name":1107,"slug":1108,"type":15},"Typography","typography","2026-04-06T18:28:41.2556",{"slug":1111,"name":1111,"fn":1112,"description":1113,"org":1114,"tags":1115,"stars":20,"repoUrl":21,"updatedAt":1124},"mapbox-data-visualization-patterns","implement Mapbox data visualization patterns","Patterns for visualizing data on maps including choropleth maps, heat maps, 3D visualizations, data-driven styling, and animated data. Covers layer types, color scales, and performance optimization.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1116,1119,1120,1121],{"name":1117,"slug":1118,"type":15},"Data Visualization","data-visualization",{"name":1103,"slug":1104,"type":15},{"name":9,"slug":8,"type":15},{"name":1122,"slug":1123,"type":15},"Performance","performance","2026-04-06T18:29:02.907655",{"slug":1126,"name":1126,"fn":1127,"description":1128,"org":1129,"tags":1130,"stars":20,"repoUrl":21,"updatedAt":1146},"mapbox-flutter-patterns","integrate Mapbox maps into Flutter applications","Official integration patterns for the Mapbox Maps Flutter SDK. Covers installation, iOS\u002FAndroid platform setup, access token configuration, MapWidget initialization, camera control, annotations with tap handling, user location, and loading GeoJSON. Based on official Mapbox documentation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1131,1132,1135,1138,1141,1142,1143],{"name":1086,"slug":1087,"type":15},{"name":1133,"slug":1134,"type":15},"Dart","dart",{"name":1136,"slug":1137,"type":15},"Flutter","flutter",{"name":1139,"slug":1140,"type":15},"iOS","ios",{"name":9,"slug":8,"type":15},{"name":1090,"slug":1091,"type":15},{"name":1144,"slug":1145,"type":15},"SDK","sdk","2026-05-12T06:03:11.211517",{"slug":1148,"name":1148,"fn":1149,"description":1150,"org":1151,"tags":1152,"stars":20,"repoUrl":21,"updatedAt":1158},"mapbox-geospatial-operations","select geospatial tools for Mapbox operations","Expert guidance on choosing the right geospatial tool based on problem type, accuracy requirements, and performance needs",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1153,1154,1155],{"name":9,"slug":8,"type":15},{"name":1122,"slug":1123,"type":15},{"name":1156,"slug":1157,"type":15},"Strategy","strategy","2026-07-30T05:30:52.766227",{"slug":1160,"name":1160,"fn":1161,"description":1162,"org":1163,"tags":1164,"stars":20,"repoUrl":21,"updatedAt":1172},"mapbox-google-maps-migration","migrate from Google Maps to Mapbox","Migration guide for developers moving from Google Maps Platform to Mapbox GL JS, covering API equivalents, pattern translations, and key differences",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1165,1166,1169],{"name":9,"slug":8,"type":15},{"name":1167,"slug":1168,"type":15},"Migration","migration",{"name":1170,"slug":1171,"type":15},"Web Development","web-development","2026-04-06T18:28:56.459496",{"slug":1174,"name":1174,"fn":1175,"description":1176,"org":1177,"tags":1178,"stars":20,"repoUrl":21,"updatedAt":1185},"mapbox-ios-patterns","integrate Mapbox Maps SDK on iOS","Official integration patterns for Mapbox Maps SDK on iOS. Covers installation, adding markers, user location, custom data, styles, camera control, and featureset interactions. Based on official Mapbox documentation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1179,1180,1181,1182],{"name":1139,"slug":1140,"type":15},{"name":9,"slug":8,"type":15},{"name":1090,"slug":1091,"type":15},{"name":1183,"slug":1184,"type":15},"Swift","swift","2026-07-30T05:30:54.75526",{"slug":1187,"name":1187,"fn":1188,"description":1189,"org":1190,"tags":1191,"stars":20,"repoUrl":21,"updatedAt":1197},"mapbox-location-grounding","generate grounded location-aware responses with Mapbox","Compose Mapbox MCP tools to produce grounded, cited location-aware responses from live data instead of training data",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1192,1195,1196],{"name":1193,"slug":1194,"type":15},"Data Quality","data-quality",{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},"2026-04-15T05:01:44.248764",{"slug":1199,"name":1199,"fn":1200,"description":1201,"org":1202,"tags":1203,"stars":20,"repoUrl":21,"updatedAt":1210},"mapbox-maplibre-migration","migrate from MapLibre to Mapbox","Guide for migrating from MapLibre GL JS to Mapbox GL JS, covering API compatibility, token setup, style configuration, and the benefits of Mapbox's official support and ecosystem",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1204,1207,1208,1209],{"name":1205,"slug":1206,"type":15},"Engineering","engineering",{"name":9,"slug":8,"type":15},{"name":1167,"slug":1168,"type":15},{"name":1170,"slug":1171,"type":15},"2026-04-06T18:28:51.531856",{"slug":1212,"name":1212,"fn":1213,"description":1214,"org":1215,"tags":1216,"stars":20,"repoUrl":21,"updatedAt":1225},"mapbox-mcp-devkit-patterns","integrate Mapbox MCP DevKit in coding assistants","Integration patterns for Mapbox MCP DevKit Server in AI coding assistants. Covers setup, style management, token management, validation workflows, and documentation access through MCP. Use when building Mapbox applications with AI coding assistance.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1217,1220,1223,1224],{"name":1218,"slug":1219,"type":15},"Documentation","documentation",{"name":1221,"slug":1222,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},"2026-04-06T18:28:53.790961",{"slug":4,"name":4,"fn":5,"description":6,"org":1227,"tags":1228,"stars":20,"repoUrl":21,"updatedAt":22},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1229,1230,1231],{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"slug":1233,"name":1233,"fn":1234,"description":1235,"org":1236,"tags":1237,"stars":20,"repoUrl":21,"updatedAt":1245},"mapbox-search-integration","implement Mapbox search in applications","Complete workflow for implementing Mapbox search in applications - from discovery questions to production-ready integration with best practices",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1238,1241,1242],{"name":1239,"slug":1240,"type":15},"API Development","api-development",{"name":9,"slug":8,"type":15},{"name":1243,"slug":1244,"type":15},"Search","search","2026-04-06T18:28:50.264933",19,{"items":1248,"total":1246},[1249,1255,1262,1269,1279,1285,1291],{"slug":1080,"name":1080,"fn":1081,"description":1082,"org":1250,"tags":1251,"stars":20,"repoUrl":21,"updatedAt":1092},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1252,1253,1254],{"name":1086,"slug":1087,"type":15},{"name":9,"slug":8,"type":15},{"name":1090,"slug":1091,"type":15},{"slug":1094,"name":1094,"fn":1095,"description":1096,"org":1256,"tags":1257,"stars":20,"repoUrl":21,"updatedAt":1109},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1258,1259,1260,1261],{"name":1100,"slug":1101,"type":15},{"name":1103,"slug":1104,"type":15},{"name":9,"slug":8,"type":15},{"name":1107,"slug":1108,"type":15},{"slug":1111,"name":1111,"fn":1112,"description":1113,"org":1263,"tags":1264,"stars":20,"repoUrl":21,"updatedAt":1124},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1265,1266,1267,1268],{"name":1117,"slug":1118,"type":15},{"name":1103,"slug":1104,"type":15},{"name":9,"slug":8,"type":15},{"name":1122,"slug":1123,"type":15},{"slug":1126,"name":1126,"fn":1127,"description":1128,"org":1270,"tags":1271,"stars":20,"repoUrl":21,"updatedAt":1146},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1272,1273,1274,1275,1276,1277,1278],{"name":1086,"slug":1087,"type":15},{"name":1133,"slug":1134,"type":15},{"name":1136,"slug":1137,"type":15},{"name":1139,"slug":1140,"type":15},{"name":9,"slug":8,"type":15},{"name":1090,"slug":1091,"type":15},{"name":1144,"slug":1145,"type":15},{"slug":1148,"name":1148,"fn":1149,"description":1150,"org":1280,"tags":1281,"stars":20,"repoUrl":21,"updatedAt":1158},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1282,1283,1284],{"name":9,"slug":8,"type":15},{"name":1122,"slug":1123,"type":15},{"name":1156,"slug":1157,"type":15},{"slug":1160,"name":1160,"fn":1161,"description":1162,"org":1286,"tags":1287,"stars":20,"repoUrl":21,"updatedAt":1172},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1288,1289,1290],{"name":9,"slug":8,"type":15},{"name":1167,"slug":1168,"type":15},{"name":1170,"slug":1171,"type":15},{"slug":1174,"name":1174,"fn":1175,"description":1176,"org":1292,"tags":1293,"stars":20,"repoUrl":21,"updatedAt":1185},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1294,1295,1296,1297],{"name":1139,"slug":1140,"type":15},{"name":9,"slug":8,"type":15},{"name":1090,"slug":1091,"type":15},{"name":1183,"slug":1184,"type":15}]