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