-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmanifest.json
More file actions
37 lines (37 loc) · 977 Bytes
/
manifest.json
File metadata and controls
37 lines (37 loc) · 977 Bytes
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
{
"dxt_version": "0.1",
"name": "@mapbox/mcp-devkit-server",
"display_name": "Mapbox MCP DevKit Server",
"version": "0.5.1",
"description": "Mapbox MCP devkit server",
"author": {
"name": "Mapbox, Inc."
},
"server": {
"type": "node",
"entry_point": "dist/esm/index.js",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/dist/esm/index.js"
],
"env": {
"MAPBOX_ACCESS_TOKEN": "${user_config.MAPBOX_ACCESS_TOKEN}"
}
}
},
"user_config": {
"MAPBOX_ACCESS_TOKEN": {
"type": "string",
"title": "Mapbox access_token",
"description": "Enter your Mapbox secret access token to get started, if you don't have one, please register from https://account.mapbox.com/access-tokens/",
"required": true,
"sensitive": true
}
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/mapbox/mcp-devkit-server.git"
}
}