@mapbox/mcp-server 0.1.0 → 0.1.1-dev.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
Node.js server implementing Model Context Protocol (MCP) for Mapbox APIs.
|
|
4
4
|
|
|
5
|
+
## Unlock Geospatial Intelligence for Your AI Applications
|
|
6
|
+
|
|
7
|
+
The Mapbox MCP Server transforms any AI agent or application into a geospatially-aware system by providing seamless access to Mapbox's comprehensive location intelligence platform. With this server, your AI can understand and reason about places, navigate the physical world, and access rich geospatial data including:
|
|
8
|
+
|
|
9
|
+
- **Global geocoding** to convert addresses and place names to coordinates and vice versa
|
|
10
|
+
- **Points of interest (POI) search** across millions of businesses, landmarks, and places worldwide
|
|
11
|
+
- **Multi-modal routing** for driving, walking, and cycling with real-time traffic
|
|
12
|
+
- **Travel time matrices** to analyze accessibility and optimize logistics
|
|
13
|
+
- **Isochrone generation** to visualize areas reachable within specific time or distance constraints
|
|
14
|
+
- **Static map images** to create visual representations of locations, routes, and geographic data
|
|
15
|
+
|
|
16
|
+
Whether you're building an AI travel assistant, logistics optimizer, location-based recommender, or any application that needs to understand "where", the Mapbox MCP Server provides the spatial intelligence to make it possible. You can also enable it on popular clients like Claude Desktop and VS Code. See below for details
|
|
17
|
+
|
|
18
|
+

|
|
19
|
+
|
|
20
|
+
# Usage
|
|
21
|
+
|
|
5
22
|
**A Mapbox access token is required to use this MCP server.**
|
|
6
23
|
|
|
7
24
|
To get a Mapbox access token:
|
|
@@ -18,7 +35,7 @@ For detailed setup instructions for different integrations, refer to the followi
|
|
|
18
35
|
|
|
19
36
|
- [Claude Desktop Setup](./docs/claude-desktop-setup.md) - Instructions for configuring Claude Desktop to work with this MCP server
|
|
20
37
|
- [VS Code Setup](./docs/vscode-setup.md) - Setting up a development environment in Visual Studio Code
|
|
21
|
-
- [
|
|
38
|
+
- [Smolagents Integration](./docs/using-mcp-with-smolagents/README.md) - Example showing how to connect Smolagents AI agents to Mapbox's tools
|
|
22
39
|
|
|
23
40
|
## Tools
|
|
24
41
|
|
|
@@ -144,6 +161,14 @@ npx plop create-tool
|
|
|
144
161
|
# provide tool name without suffix (e.g. Search)
|
|
145
162
|
```
|
|
146
163
|
|
|
164
|
+
## Environment Variables
|
|
165
|
+
|
|
166
|
+
### VERBOSE_ERRORS
|
|
167
|
+
|
|
168
|
+
Set `VERBOSE_ERRORS=true` to get detailed error messages from the MCP server. This is useful for debugging issues when integrating with MCP clients.
|
|
169
|
+
|
|
170
|
+
By default, the server returns generic error messages. With verbose errors enabled, you'll receive the actual error details, which can help diagnose API connection issues, invalid parameters, or other problems.
|
|
171
|
+
|
|
147
172
|
---
|
|
148
173
|
|
|
149
174
|
[License](LICENSE.md)
|