<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Matthew Podwysocki</title>
    <description>The latest articles on DEV Community by Matthew Podwysocki (@matthew_podwysocki_fd081c).</description>
    <link>https://dev.to/matthew_podwysocki_fd081c</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3659057%2Feea56605-17b5-496e-bae7-ba2955f762c3.jpg</url>
      <title>DEV Community: Matthew Podwysocki</title>
      <link>https://dev.to/matthew_podwysocki_fd081c</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/matthew_podwysocki_fd081c"/>
    <language>en</language>
    <item>
      <title>Introducing Mapbox Agent Skills</title>
      <dc:creator>Matthew Podwysocki</dc:creator>
      <pubDate>Wed, 11 Feb 2026 22:09:57 +0000</pubDate>
      <link>https://dev.to/mapbox/introducing-mapbox-agent-skills-1k19</link>
      <guid>https://dev.to/mapbox/introducing-mapbox-agent-skills-1k19</guid>
      <description>&lt;p&gt;I'm excited to share something we've been working on that makes building with Mapbox a lot easier, especially if you're using AI coding assistants like Claude Code, Cursor, or GitHub Copilot.&lt;/p&gt;

&lt;p&gt;We've built a collection of Agent Skills that teach AI assistants how to build better Mapbox applications. Think of it as giving your AI assistant a crash course in Mapbox development best practices.&lt;/p&gt;

&lt;h2&gt;
  
  
  TL;DR
&lt;/h2&gt;

&lt;p&gt;Agent Skills teach AI assistants Mapbox development best practices. We've built 15 skills and counting covering web/iOS/Android integration, performance optimization, search implementation, geospatial operations, map design, migrations, security, and common patterns. Install them and your AI will know things like "cluster 1000+ markers" and "use Search Box API for autocomplete."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Install all skills:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx add-skill mapbox/mapbox-agent-skills
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Install specific skills:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx skills add mapbox/mapbox-agent-skills &lt;span class="nt"&gt;--skill&lt;/span&gt; mapbox-web-performance-patterns
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;List available skills:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx skills add mapbox/mapbox-agent-skills &lt;span class="nt"&gt;--list&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  What Are Skills?
&lt;/h2&gt;

&lt;p&gt;If you've been using AI coding assistants, you've probably noticed they're pretty good at writing code, but sometimes they miss the nuances. They might suggest patterns that work but aren't optimal, or miss important details about how things should be done.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://agentskills.io/home" rel="noopener noreferrer"&gt;Agent Skills&lt;/a&gt; are a way to fix this. They're folders with instructions and guidance that AI assistants can load and use when helping you build. Unlike tools (which let AI do things) or prompts (which give specific instructions), skills provide domain expertise. The know-how.&lt;/p&gt;

&lt;p&gt;When an AI assistant has access to Mapbox skills, it knows things like "if you're adding 1000+ markers, you should use clustering" or "use the Search Box API for autocomplete, not the Geocoding API." It's the difference between an AI that knows how to code and one that knows how to code Mapbox apps specifically.&lt;/p&gt;

&lt;h2&gt;
  
  
  See It In Action
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmszl57sdlm1lpru87kcr.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmszl57sdlm1lpru87kcr.gif" alt="Store Locator App" width="760" height="405"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;This production-ready store locator was built in minutes using Claude Code with Mapbox Agent Skills. The AI assistant handled marker patterns, distance calculations, search functionality, and responsive design automatically—following Mapbox best practices from the start.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Skills Are Important
&lt;/h2&gt;

&lt;p&gt;Here's the thing: Mapbox has a lot of surface area. We have SDKs for &lt;a href="https://docs.mapbox.com/mapbox-gl-js/guides/" rel="noopener noreferrer"&gt;web&lt;/a&gt;, &lt;a href="https://docs.mapbox.com/ios/maps/guides/" rel="noopener noreferrer"&gt;iOS&lt;/a&gt;, and &lt;a href="https://docs.mapbox.com/android/maps/guides/" rel="noopener noreferrer"&gt;Android&lt;/a&gt;. We have multiple search APIs with different use cases. We have performance patterns that matter at scale. We have migration paths from other platforms.&lt;/p&gt;

&lt;p&gt;When you're building with an AI assistant, you want it to know all this stuff. You don't want to spend time correcting it when it suggests using 1000 individual markers instead of clustering. You don't want it to miss that you should debounce search requests. You want it to just know.&lt;/p&gt;

&lt;p&gt;That's what these skills do. They encode the knowledge we've built up from working with thousands of developers building Mapbox applications. The patterns that work. The mistakes to avoid. The right tool for the job.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Inside the Box
&lt;/h2&gt;

&lt;p&gt;We've organized the skills into a few main areas. Here's what's available:&lt;/p&gt;

&lt;h3&gt;
  
  
  Platform Integration
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Web, iOS, and Android patterns&lt;/strong&gt; - These skills cover the fundamentals of integrating Mapbox into your app, whether you're building for the web with React, Vue, Svelte, or Angular, or going native with Swift/SwiftUI on iOS or Kotlin/Jetpack Compose on Android. They know about framework-specific patterns, lifecycle management, and platform best practices.&lt;/p&gt;

&lt;h3&gt;
  
  
  Performance
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Web performance patterns&lt;/strong&gt; - This one's huge. It covers everything from initialization strategies to handling thousands of markers, optimizing data loading, and managing memory. If you're building something that needs to perform at scale, this skill will save you a lot of debugging time.&lt;/p&gt;

&lt;h3&gt;
  
  
  Search
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Search integration and patterns&lt;/strong&gt; - We have two skills here. One walks through the complete workflow of adding search to your app (asking the right discovery questions, picking the right product, implementing it correctly). The other helps you choose between our different search tools and configure them properly. Between these two, your AI assistant will know exactly how to implement search for your use case.&lt;/p&gt;

&lt;h3&gt;
  
  
  Geospatial Operations
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Geometric calculations and routing&lt;/strong&gt; - This skill helps decide when to use offline geometric calculations (like measuring straight-line distance) versus when to use our routing APIs (like getting actual drive times). It's the "as the crow flies vs as the crow drives" decision framework, plus a ton of practical examples.&lt;/p&gt;

&lt;h3&gt;
  
  
  Design and Cartography
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Map design, styles, and quality&lt;/strong&gt; - Three skills covering cartographic principles (color theory, visual hierarchy, typography), common style patterns and layer configurations, and style validation and optimization. If you're doing custom map design, these will help you make maps that look professional and work well.&lt;/p&gt;

&lt;h3&gt;
  
  
  Migration
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Google Maps and MapLibre migration&lt;/strong&gt; - If you're moving from Google Maps Platform or MapLibre, these skills provide comprehensive migration guides with API equivalents and pattern translations. They know the gotchas and the breaking changes.&lt;/p&gt;

&lt;h3&gt;
  
  
  Security
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Token security&lt;/strong&gt; - Best practices for handling access tokens securely across all platforms. This is one of those things that's easy to get wrong, so having your AI assistant know the right patterns from the start is valuable.&lt;/p&gt;

&lt;h3&gt;
  
  
  Common Patterns
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Store locators&lt;/strong&gt; - A focused skill on building location finders and store locators, with patterns for markers, filtering, distance calculations, and all the UX details that make these features work well.&lt;/p&gt;

&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;Installing skills is straightforward. If you're using Claude Code, Cursor, or another AI assistant that supports Agent Skills, you can add them all at once:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx skills add mapbox/mapbox-agent-skills
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or install specific skills if you only need certain ones:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx skills add mapbox/mapbox-agent-skills &lt;span class="nt"&gt;--skill&lt;/span&gt; mapbox-web-performance-patterns
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can list what's available:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx skills add mapbox/mapbox-agent-skills &lt;span class="nt"&gt;--list&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Once installed, your AI assistant will automatically use these skills when you're working on Mapbox projects. You don't need to do anything special. Just start building and you'll notice better suggestions, fewer mistakes, and more production-ready code.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Pro tip:&lt;/strong&gt; These skills work great with our Mapbox MCP servers. We have the &lt;a href="https://github.com/mapbox/mcp-server" rel="noopener noreferrer"&gt;Mapbox MCP Server&lt;/a&gt; for core Mapbox operations and the &lt;a href="https://github.com/mapbox/mcp-devkit-server" rel="noopener noreferrer"&gt;Mapbox MCP DevKit Server&lt;/a&gt; for development workflows. Skills provide the expertise (how to design good maps, which patterns to use), while MCP tools provide the actions (create styles, generate tokens, preview maps). Together they make a pretty powerful development workflow.&lt;/p&gt;

&lt;h2&gt;
  
  
  Build Stuff and Let Us Know
&lt;/h2&gt;

&lt;p&gt;We built these skills based on what we've learned from years of working with developers building Mapbox applications. But they'll get better as more people use them and give us feedback.&lt;/p&gt;

&lt;p&gt;If you build something cool with these skills, or if you find gaps where your AI assistant could use more guidance, let us know. Open an issue on &lt;a href="https://github.com/mapbox/mapbox-agent-skills" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt; or contribute a new skill if you've discovered patterns we should capture.&lt;/p&gt;

&lt;p&gt;We're excited to see what you build.&lt;/p&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>productivity</category>
      <category>tooling</category>
    </item>
    <item>
      <title>Introducing the Mapbox MCP Server: Location Intelligence for AI Agents</title>
      <dc:creator>Matthew Podwysocki</dc:creator>
      <pubDate>Tue, 16 Dec 2025 14:43:34 +0000</pubDate>
      <link>https://dev.to/mapbox/introducing-the-mapbox-mcp-server-location-intelligence-for-ai-agents-4bia</link>
      <guid>https://dev.to/mapbox/introducing-the-mapbox-mcp-server-location-intelligence-for-ai-agents-4bia</guid>
      <description>&lt;p&gt;AI agents are getting smarter every day as they can write code, analyze data, and answer complex questions. But when it comes to understanding &lt;em&gt;where&lt;/em&gt; things are, most agents hit a wall. They can tell you about restaurants in San Francisco, but they can't geocode an address, calculate a route, or determine if two locations are within walking distance.&lt;/p&gt;

&lt;p&gt;That's where the &lt;strong&gt;Mapbox Model Context Protocol (MCP) Server&lt;/strong&gt; comes in. It gives AI agents access to Mapbox's powerful location services through a simple, standardized interface. No custom API integration required, just connect your agent to the MCP server, and it can instantly geocode addresses, plan routes, analyze travel times, and create maps.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdnliakuyq4f0ive7f518.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdnliakuyq4f0ive7f518.gif" alt="DC Tour Assistant Demo" width="600" height="307"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Example: An AI agent built with MCP can naturally handle location queries and display results visually&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  What is the Model Context Protocol (MCP)?
&lt;/h2&gt;

&lt;p&gt;The &lt;a href="https://modelcontextprotocol.io/" rel="noopener noreferrer"&gt;Model Context Protocol&lt;/a&gt; is an open standard created by Anthropic for connecting AI models to external tools and data sources. Think of it as USB for AI agents which is to say a universal connector that works across different frameworks and platforms.&lt;/p&gt;

&lt;p&gt;Instead of writing custom code to integrate with each API, you:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Connect your agent to an MCP server&lt;/li&gt;
&lt;li&gt;The server exposes its tools in a standardized format&lt;/li&gt;
&lt;li&gt;Your agent can discover and use those tools automatically&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;MCP is supported by popular frameworks like CrewAI, LangGraph, Pydantic AI, and Mastra, as well as by AI assistants like GitHub Copilot and Claude Desktop.&lt;/p&gt;
&lt;h2&gt;
  
  
  What Does the Mapbox MCP Server Provide?
&lt;/h2&gt;

&lt;p&gt;The Mapbox MCP Server exposes nine powerful geospatial tools that give your agents comprehensive location intelligence.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; Mapbox also offers the &lt;a href="https://github.com/mapbox/mcp-devkit-server" rel="noopener noreferrer"&gt;DevKit MCP Server&lt;/a&gt; (hosted at &lt;code&gt;https://mcp-devkit.mapbox.com/mcp&lt;/code&gt;), which is designed to help developers &lt;em&gt;build&lt;/em&gt; Mapbox applications by providing code examples, documentation search, and development assistance. This post focuses on the main MCP server for location intelligence. We'll cover the DevKit in a future post.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;
  
  
  Core Tools
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Tool&lt;/th&gt;
&lt;th&gt;Purpose&lt;/th&gt;
&lt;th&gt;Example Use&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;search_and_geocode_tool&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Convert addresses/places to coordinates&lt;/td&gt;
&lt;td&gt;"Find coordinates for '1600 Pennsylvania Ave, Washington DC'"&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;reverse_geocoding_tool&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Convert coordinates to addresses&lt;/td&gt;
&lt;td&gt;"What's the address at 38.8977, -77.0365?"&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;directions_tool&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Calculate routes between points&lt;/td&gt;
&lt;td&gt;"Driving directions from Boston to New York with traffic"&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;matrix_tool&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Travel times between multiple points&lt;/td&gt;
&lt;td&gt;"Calculate delivery times from 3 warehouses to 10 addresses"&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;isochrone_tool&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Areas reachable within time/distance&lt;/td&gt;
&lt;td&gt;"Show everywhere I can drive in 30 minutes from downtown"&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;static_image_tool&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Generate map images&lt;/td&gt;
&lt;td&gt;"Create a map showing my delivery route"&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;category_search_tool&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Find POIs by category&lt;/td&gt;
&lt;td&gt;"Find all museums near Central Park"&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;resource_reader_tool&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Access reference data&lt;/td&gt;
&lt;td&gt;"Get list of available POI categories"&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;
&lt;h3&gt;
  
  
  What Makes These Tools Special
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Unified Search &amp;amp; Geocoding&lt;/strong&gt;: The &lt;code&gt;search_and_geocode_tool&lt;/code&gt; consolidates forward geocoding and POI search into one powerful tool. It handles everything from "123 Main St" to "Starbucks near Times Square" to "Eiffel Tower."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Traffic-Aware Routing&lt;/strong&gt;: The &lt;code&gt;directions_tool&lt;/code&gt; supports real-time traffic data, alternative routes, and can optimize for different transportation modes (driving, walking, cycling).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Multi-Point Optimization&lt;/strong&gt;: The &lt;code&gt;matrix_tool&lt;/code&gt; efficiently calculates travel times between dozens of locations which is essential for logistics, delivery planning, and service area analysis.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Reachability Analysis&lt;/strong&gt;: The &lt;code&gt;isochrone_tool&lt;/code&gt; generates polygons showing areas reachable within specific time or distance thresholds which is perfect for analyzing coverage areas, commute zones, or delivery ranges.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Visual Output&lt;/strong&gt;: The &lt;code&gt;static_image_tool&lt;/code&gt; creates customizable map images with markers, routes, and overlays which is great for reports, notifications, or sharing with users.&lt;/p&gt;
&lt;h2&gt;
  
  
  Getting Started: Setup Options
&lt;/h2&gt;

&lt;p&gt;You have two ways to use the Mapbox MCP Server:&lt;/p&gt;
&lt;h3&gt;
  
  
  Option 1: Hosted Server (Easiest to Get Started)
&lt;/h3&gt;

&lt;p&gt;Mapbox provides a hosted MCP endpoint at &lt;strong&gt;&lt;code&gt;https://mcp.mapbox.com/mcp&lt;/code&gt;&lt;/strong&gt; that's always available with no installation required!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Authentication:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Interactive clients&lt;/strong&gt; (Claude Desktop, VS Code): Uses OAuth flow with browser-based login&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Programmatic access&lt;/strong&gt;: Uses Bearer token authentication with your Mapbox access token&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Setup:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;For interactive tools like Claude Desktop, VS Code, or Cursor, add this to your MCP settings (typically in &lt;code&gt;settings.json&lt;/code&gt; or similar config file):&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"mapbox"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"url"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://mcp.mapbox.com/mcp"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;For Claude Desktop specifically&lt;/strong&gt;, the config file is located at:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;macOS&lt;/strong&gt;: &lt;code&gt;~/Library/Application Support/Claude/claude_desktop_config.json&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Windows&lt;/strong&gt;: &lt;code&gt;%APPDATA%\Claude\claude_desktop_config.json&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The first time you connect, a browser window will open asking you to log in to your Mapbox account and authorize access via OAuth.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;For programmatic access&lt;/strong&gt; (like in agent frameworks), you'll need:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A Mapbox account (free tier available) - &lt;a href="https://account.mapbox.com/auth/signup/" rel="noopener noreferrer"&gt;Sign up here&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Your Mapbox access token from &lt;a href="https://account.mapbox.com/access-tokens/" rel="noopener noreferrer"&gt;your account dashboard&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Then use Bearer token authentication in your code (see framework-specific tutorials for examples).&lt;/p&gt;

&lt;p&gt;Check the &lt;a href="https://github.com/mapbox/mcp-server/blob/main/docs/hosted-mcp-guide.md" rel="noopener noreferrer"&gt;Hosted MCP Server Guide&lt;/a&gt; for detailed setup instructions for different clients.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Pros:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;No local setup or dependencies required&lt;/li&gt;
&lt;li&gt;Managed infrastructure by Mapbox&lt;/li&gt;
&lt;li&gt;Always available&lt;/li&gt;
&lt;li&gt;Automatic updates&lt;/li&gt;
&lt;li&gt;Perfect for getting started quickly&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Cons:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Additional network hop (your machine → hosted MCP → Mapbox APIs)&lt;/li&gt;
&lt;li&gt;Requires stable internet connection&lt;/li&gt;
&lt;li&gt;Less control over configuration&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Option 2: Local Server (For Development &amp;amp; Customization)
&lt;/h3&gt;

&lt;p&gt;Run the MCP server as a local process on your machine. This gives you full control and is ideal for development, debugging, or customization.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Prerequisites:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Node.js LTS+ (for npx method) OR Python 3.10+ with uv (for uvx method)&lt;/li&gt;
&lt;li&gt;A Mapbox account (free tier available) - &lt;a href="https://account.mapbox.com/auth/signup/" rel="noopener noreferrer"&gt;Sign up here&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Your Mapbox access token from &lt;a href="https://account.mapbox.com/access-tokens/" rel="noopener noreferrer"&gt;your account dashboard&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Setup:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;For interactive tools like Claude Desktop, VS Code, or Cursor, add this to your MCP settings:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"mapbox"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"-y"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"@mapbox/mcp-server"&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"env"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
        &lt;/span&gt;&lt;span class="nl"&gt;"MAPBOX_ACCESS_TOKEN"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"your_token_here"&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;For Claude Desktop specifically&lt;/strong&gt;, the config file is located at:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;macOS&lt;/strong&gt;: &lt;code&gt;~/Library/Application Support/Claude/claude_desktop_config.json&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Windows&lt;/strong&gt;: &lt;code&gt;%APPDATA%\Claude\claude_desktop_config.json&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;For command-line testing&lt;/strong&gt;, you can run the server directly:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Set your access token&lt;/span&gt;
&lt;span class="nb"&gt;export &lt;/span&gt;&lt;span class="nv"&gt;MAPBOX_ACCESS_TOKEN&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;"your_token_here"&lt;/span&gt;

&lt;span class="c"&gt;# Run with npx (recommended)&lt;/span&gt;
npx &lt;span class="nt"&gt;-y&lt;/span&gt; @mapbox/mcp-server

&lt;span class="c"&gt;# OR run with uvx (Python users)&lt;/span&gt;
pip &lt;span class="nb"&gt;install &lt;/span&gt;uv
uvx mapbox-mcp
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Test it with MCP Inspector:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx @modelcontextprotocol/inspector npx &lt;span class="nt"&gt;-y&lt;/span&gt; @mapbox/mcp-server
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This opens a web interface where you can explore available tools and test them interactively.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Pros:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Full control over the server process&lt;/li&gt;
&lt;li&gt;Lower latency (direct connection to Mapbox APIs)&lt;/li&gt;
&lt;li&gt;Works with any Mapbox token&lt;/li&gt;
&lt;li&gt;Can customize or extend if needed&lt;/li&gt;
&lt;li&gt;Better for development and debugging&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Cons:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Requires Node.js or Python tooling&lt;/li&gt;
&lt;li&gt;Server process management&lt;/li&gt;
&lt;li&gt;Must ensure dependencies are installed&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Example Use Cases and Prompts
&lt;/h2&gt;

&lt;p&gt;Once connected, your agents can handle natural language requests like these:&lt;/p&gt;

&lt;h3&gt;
  
  
  Location Discovery
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;"Find coffee shops within walking distance of the Empire State Building"&lt;/li&gt;
&lt;li&gt;"Show me gas stations along the route from Boston to New York"&lt;/li&gt;
&lt;li&gt;"What restaurants are near Times Square?"&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Navigation &amp;amp; Travel
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;"Get driving directions from LAX to Hollywood with current traffic"&lt;/li&gt;
&lt;li&gt;"How long would it take to walk from Central Park to Times Square?"&lt;/li&gt;
&lt;li&gt;"Calculate travel time from my hotel (Four Seasons) to JFK Airport by taxi"&lt;/li&gt;
&lt;li&gt;"What's the fastest route visiting Salesforce Tower, Twitter HQ, and Uber headquarters?"&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Visualization &amp;amp; Maps
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;"Create a map image showing the route from Golden Gate Bridge to Fisherman's Wharf"&lt;/li&gt;
&lt;li&gt;"Show me a satellite view of Manhattan with key landmarks marked"&lt;/li&gt;
&lt;li&gt;"Generate a map highlighting all Starbucks locations within a mile of downtown Seattle"&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Analysis &amp;amp; Planning
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;"Show me areas reachable within 30 minutes of downtown Portland by car"&lt;/li&gt;
&lt;li&gt;"Calculate a travel time matrix between 3 hotel locations and the convention center"&lt;/li&gt;
&lt;li&gt;"Find the optimal route visiting 3 tourist attractions in San Francisco"&lt;/li&gt;
&lt;li&gt;"I'm staying at the Fairmont. Show me everywhere I can reach by walking in 15 minutes"&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Behind the Scenes
&lt;/h3&gt;

&lt;p&gt;When you ask: &lt;em&gt;"How long does it take to drive from the Space Needle to Pike Place Market?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The agent automatically:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Uses &lt;code&gt;search_and_geocode_tool&lt;/code&gt; to find Space Needle coordinates&lt;/li&gt;
&lt;li&gt;Uses &lt;code&gt;search_and_geocode_tool&lt;/code&gt; to find Pike Place Market coordinates&lt;/li&gt;
&lt;li&gt;Calls &lt;code&gt;directions_tool&lt;/code&gt; with driving profile&lt;/li&gt;
&lt;li&gt;Returns: "約 8 minutes, 1.2 miles"&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;No manual API calls, no coordinate formatting, no error handling as the agent figures it all out.&lt;/p&gt;

&lt;h2&gt;
  
  
  Supported Frameworks and Tools
&lt;/h2&gt;

&lt;p&gt;The Mapbox MCP Server works with any MCP-compatible client, including:&lt;/p&gt;

&lt;h3&gt;
  
  
  AI Agent Frameworks
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;CrewAI&lt;/strong&gt; (Python) - Multi-agent collaboration&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;LangGraph&lt;/strong&gt; (Python) - Stateful agent workflows&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pydantic AI&lt;/strong&gt; (Python) - Type-safe agent development&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Mastra&lt;/strong&gt; (TypeScript) - Production AI applications&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Smolagents&lt;/strong&gt; (Python) - Lightweight agents from Hugging Face&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Development Tools
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Claude Desktop&lt;/strong&gt; - Anthropic's AI assistant&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ChatGPT&lt;/strong&gt; - OpenAI's desktop application&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Gemini CLI&lt;/strong&gt; - Google's command-line tool&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;VS Code&lt;/strong&gt; - Via MCP extensions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cursor&lt;/strong&gt; - AI-powered IDE&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Goose&lt;/strong&gt; - Terminal-based AI assistant&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Integration Approaches
&lt;/h3&gt;

&lt;p&gt;Each framework has slightly different integration patterns, but they all follow the same basic flow:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Configure the MCP server connection&lt;/li&gt;
&lt;li&gt;Add the configuration to your agent&lt;/li&gt;
&lt;li&gt;The agent automatically discovers available tools&lt;/li&gt;
&lt;li&gt;Use natural language to invoke tools&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;We'll be publishing detailed tutorials for each major framework. Stay tuned for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;CrewAI&lt;/strong&gt;: Building multi-agent location-aware systems&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pydantic AI&lt;/strong&gt;: Type-safe location intelligence&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Smolagents&lt;/strong&gt;: Lightweight location-enabled agents&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Mastra&lt;/strong&gt;: Production TypeScript agents with Mapbox&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Key Advantages of Using MCP
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;No Custom API Integration&lt;/strong&gt;: Traditional approach requires writing geocoding logic, formatting coordinates, handling errors, chaining API calls. With MCP, you just describe what you want in natural language.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Automatic Tool Discovery&lt;/strong&gt;: The MCP server exposes its tools in a standardized format. Your agent discovers available tools automatically and no manual configuration of each tool.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Framework Agnostic&lt;/strong&gt;: Write once, use everywhere. The same Mapbox MCP server works with CrewAI, LangGraph, GitHub Copilot, Claude Desktop, and any other MCP-compatible client.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Natural Language Interface&lt;/strong&gt;: Agents interpret your task descriptions and choose the right tools. Say "plan a route visiting three restaurants" and the agent figures out it needs to geocode, then calculate directions, then optimize the order.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Intelligent Tool Chaining&lt;/strong&gt;: Agents understand dependencies between tools. They know addresses must be geocoded before calculating routes, and they handle this automatically.&lt;/p&gt;

&lt;h2&gt;
  
  
  Real-World Applications
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Travel &amp;amp; Hospitality
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Hotel concierge bots that provide directions and local recommendations&lt;/li&gt;
&lt;li&gt;Trip planning assistants that optimize multi-stop itineraries&lt;/li&gt;
&lt;li&gt;Event coordinators calculating travel times for attendees&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Logistics &amp;amp; Delivery
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Route optimization for delivery fleets&lt;/li&gt;
&lt;li&gt;Service area analysis for expansion planning&lt;/li&gt;
&lt;li&gt;Warehouse location analysis based on customer distribution&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Real Estate
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Commute time calculators for property listings&lt;/li&gt;
&lt;li&gt;School district and amenity proximity analysis&lt;/li&gt;
&lt;li&gt;Neighborhood boundary visualization&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Field Services
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Technician dispatch optimization&lt;/li&gt;
&lt;li&gt;Service area coverage analysis&lt;/li&gt;
&lt;li&gt;Emergency response time calculations&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Location-Based Marketing
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Store locators with accurate directions&lt;/li&gt;
&lt;li&gt;Coverage area mapping for service offerings&lt;/li&gt;
&lt;li&gt;Competitive location analysis&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Getting Help and Resources
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Documentation
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/mapbox/mcp-server" rel="noopener noreferrer"&gt;Mapbox MCP Server GitHub&lt;/a&gt; - Source code and documentation&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/mapbox/mcp-server/blob/main/docs/hosted-mcp-guide.md" rel="noopener noreferrer"&gt;Hosted MCP Server Guide&lt;/a&gt; - Setup for different clients&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://modelcontextprotocol.io/" rel="noopener noreferrer"&gt;Model Context Protocol Spec&lt;/a&gt; - MCP standard documentation&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://docs.mapbox.com/api/" rel="noopener noreferrer"&gt;Mapbox API Docs&lt;/a&gt; - Underlying API reference&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Support
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Email&lt;/strong&gt;: &lt;a href="mailto:mcp-feedback@mapbox.com"&gt;mcp-feedback@mapbox.com&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Issues&lt;/strong&gt;: &lt;a href="https://github.com/mapbox/mcp-server/issues" rel="noopener noreferrer"&gt;GitHub Issues&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Community&lt;/strong&gt;: Join discussions in the MCP community&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Pricing and Rate Limits
&lt;/h2&gt;

&lt;p&gt;The Mapbox MCP Server uses your Mapbox account and access token. Pricing follows standard Mapbox API rates:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Geocoding&lt;/strong&gt;: 100,000 requests/month free&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Directions&lt;/strong&gt;: 5,000 requests/month free&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Matrix&lt;/strong&gt;: Counts as multiple requests (origins × destinations)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Static Maps&lt;/strong&gt;: 50,000 requests/month free&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The free tier is generous for development and small projects. For production use, check &lt;a href="https://www.mapbox.com/pricing/" rel="noopener noreferrer"&gt;Mapbox pricing&lt;/a&gt; for details.&lt;/p&gt;

&lt;h2&gt;
  
  
  Next Steps
&lt;/h2&gt;

&lt;p&gt;Ready to add location intelligence to your AI agents?&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Sign up for Mapbox&lt;/strong&gt;: Get your free access token at &lt;a href="https://account.mapbox.com/auth/signup/" rel="noopener noreferrer"&gt;mapbox.com/signup&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Try the MCP Inspector&lt;/strong&gt;: Test the server and explore available tools&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pick a framework&lt;/strong&gt;: Start with CrewAI, LangGraph, or your preferred agent framework&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Build something&lt;/strong&gt;: Check out our framework-specific tutorials (coming soon!)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;In our next post, we'll dive deep into building a multi-agent travel planning system with CrewAI and Mapbox MCP, complete with working code you can run and customize.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Also coming soon:&lt;/strong&gt; A guide to the &lt;a href="https://github.com/mapbox/mcp-devkit-server" rel="noopener noreferrer"&gt;Mapbox DevKit MCP Server&lt;/a&gt;, which helps AI assistants write Mapbox code by providing documentation, examples, and API guidance which is perfect for developers building Mapbox applications.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Have questions or want to share what you're building? Reach out to &lt;a href="mailto:mcp-feedback@mapbox.com"&gt;mcp-feedback@mapbox.com&lt;/a&gt; or open an issue on &lt;a href="https://github.com/mapbox/mcp-server/issues" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>tutorial</category>
      <category>python</category>
    </item>
  </channel>
</rss>
