You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This MCP server can be packaged as a DXT (Desktop Extension) file for easy distribution and installation. DXT is a standardized format for distributing local MCP servers, similar to browser extensions.
17
+
18
+
### Creating the DXT Package
19
+
20
+
To create a DXT package:
21
+
22
+
```bash
23
+
# Install the DXT CLI tool
24
+
npm install -g @anthropic-ai/dxt
25
+
26
+
# Build the server first
27
+
npm run build
28
+
29
+
# Create the DXT package
30
+
npx @anthropic-ai/dxt pack
31
+
```
32
+
33
+
This will generate `mcp-devkit-server.dxt` using the configuration in `manifest.json`.
34
+
35
+
### Installing the DXT Package
36
+
37
+
Users can install the DXT package by:
38
+
39
+
1. Opening the `.dxt` file with a compatible application (e.g., Claude Desktop)
40
+
2. Following the installation prompts
41
+
3. Providing their Mapbox access token when prompted
42
+
43
+
The DXT package includes:
44
+
45
+
- Pre-built server code (`dist/index.js`)
46
+
- Server metadata and configuration
47
+
- User configuration schema for the Mapbox access token
48
+
- Automatic environment variable setup
49
+
14
50
## Getting Your Mapbox Access Token
15
51
16
52
**A Mapbox access token is required to use this MCP server.**
"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/",
0 commit comments