Skip to content

Commit 8e63bfd

Browse files
committed
Add Mapbox MCP server definition
Official Mapbox MCP server for maps, geocoding, directions, and place search. Uses @mapbox/mcp-server npm package with stdio transport. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 0217546 commit 8e63bfd

1 file changed

Lines changed: 64 additions & 0 deletions

File tree

servers/com.mapbox-mcp.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.mapbox-mcp",
4+
"name": "Mapbox",
5+
"alias": "mapbox",
6+
"description": "Search for places, geocode addresses, get directions, and generate map visualizations using the Mapbox APIs.",
7+
"icon": "https://avatars.githubusercontent.com/u/600935?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["search"],
10+
"tags": ["mapbox", "maps", "geocoding", "directions", "places", "navigation", "location"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@mapbox/mcp-server"],
16+
"env": {
17+
"MAPBOX_ACCESS_TOKEN": "${input:MAPBOX_ACCESS_TOKEN}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "MAPBOX_ACCESS_TOKEN",
23+
"label": "Mapbox Access Token",
24+
"description": "Access token for the Mapbox API.",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "pk.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://account.mapbox.com/access-tokens/",
31+
"instructions": "1. Go to account.mapbox.com/access-tokens\n2. Click 'Create a token'\n3. Configure scopes and copy the token",
32+
"button_label": "Create Token"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Create an access token at https://account.mapbox.com/access-tokens/"
42+
},
43+
44+
"contributor": {
45+
"name": "Mapbox",
46+
"github": "mapbox",
47+
"url": "https://www.mapbox.com"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/mapbox/mcp-server",
52+
"homepage": "https://www.mapbox.com",
53+
"documentation": "https://docs.mapbox.com/api/guides/mcp-server/"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": true
63+
}
64+
}

0 commit comments

Comments
 (0)