@shippo/shippo-mcp 0.8.0 → 0.8.1
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 +29 -27
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,8 +20,7 @@ Shippo MCP Server: Use this MCP Server to integrate with the Shippo service usin
|
|
|
20
20
|
## Table of Contents
|
|
21
21
|
<!-- $toc-max-depth=2 -->
|
|
22
22
|
* [<img src="https://docs.goshippo.com/images/Logo.png" width="30" alt="Shippo logo"> Shippo MCP Server](#img-srchttpsdocsgoshippocomimageslogopng-width30-altshippo-logo-shippo-mcp-server)
|
|
23
|
-
* [
|
|
24
|
-
* [Development](#development)
|
|
23
|
+
* [Quick Start](#quick-start)
|
|
25
24
|
* [Configuration](#configuration)
|
|
26
25
|
* [Features](#features)
|
|
27
26
|
* [Security](#security)
|
|
@@ -32,7 +31,7 @@ Shippo MCP Server: Use this MCP Server to integrate with the Shippo service usin
|
|
|
32
31
|
<!-- End Table of Contents [toc] -->
|
|
33
32
|
|
|
34
33
|
<!-- Start Installation [installation] -->
|
|
35
|
-
##
|
|
34
|
+
## Quick Start
|
|
36
35
|
|
|
37
36
|
<details>
|
|
38
37
|
<summary>Cursor</summary>
|
|
@@ -131,26 +130,19 @@ npx @shippo/shippo-mcp --help
|
|
|
131
130
|
</details>
|
|
132
131
|
<!-- End Installation [installation] -->
|
|
133
132
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
To build the server from source:
|
|
137
|
-
|
|
138
|
-
1. Clone the repository
|
|
139
|
-
2. Install dependencies: `npm install`
|
|
140
|
-
3. Build the server: `npm run build`
|
|
141
|
-
4. The server binary will be at `bin/mcp-server.js`
|
|
133
|
+
<!-- Start Configuration [configuration] -->
|
|
142
134
|
|
|
143
|
-
|
|
135
|
+
## Configuration
|
|
144
136
|
|
|
145
|
-
|
|
137
|
+
### Cursor / Claude
|
|
146
138
|
|
|
147
139
|
```json
|
|
148
140
|
{
|
|
149
141
|
"mcpServers": {
|
|
150
|
-
"shippo-
|
|
151
|
-
"command": "
|
|
142
|
+
"shippo-mcp": {
|
|
143
|
+
"command": "npx",
|
|
152
144
|
"args": [
|
|
153
|
-
"/
|
|
145
|
+
"@shippo/shippo-mcp",
|
|
154
146
|
"start",
|
|
155
147
|
"--api-key-header",
|
|
156
148
|
"ShippoToken YOUR_SHIPPO_API_KEY",
|
|
@@ -162,21 +154,33 @@ To run the server locally from source (e.g., for development), use the following
|
|
|
162
154
|
}
|
|
163
155
|
```
|
|
164
156
|
|
|
165
|
-
|
|
157
|
+
### Command Line
|
|
166
158
|
|
|
167
|
-
|
|
159
|
+
```bash
|
|
160
|
+
npx @shippo/shippo-mcp start --api-key-header "ShippoToken YOUR_SHIPPO_API_KEY" --shippo-api-version 2018-02-08
|
|
161
|
+
```
|
|
168
162
|
|
|
169
|
-
|
|
163
|
+
<details>
|
|
164
|
+
<summary>Development</summary>
|
|
170
165
|
|
|
171
|
-
|
|
166
|
+
To build the server from source:
|
|
167
|
+
|
|
168
|
+
1. Clone the repository
|
|
169
|
+
2. Install dependencies: `npm install`
|
|
170
|
+
3. Build the server: `npm run build`
|
|
171
|
+
4. The server binary will be at `bin/mcp-server.js`
|
|
172
|
+
|
|
173
|
+
#### Local Configuration
|
|
174
|
+
|
|
175
|
+
To run the server locally from source (e.g., for development), use the following configuration in Cursor or Claude:
|
|
172
176
|
|
|
173
177
|
```json
|
|
174
178
|
{
|
|
175
179
|
"mcpServers": {
|
|
176
|
-
"shippo-
|
|
177
|
-
"command": "
|
|
180
|
+
"shippo-dev": {
|
|
181
|
+
"command": "node",
|
|
178
182
|
"args": [
|
|
179
|
-
"
|
|
183
|
+
"/ABSOLUTE/PATH/TO/REPO/bin/mcp-server.js",
|
|
180
184
|
"start",
|
|
181
185
|
"--api-key-header",
|
|
182
186
|
"ShippoToken YOUR_SHIPPO_API_KEY",
|
|
@@ -188,11 +192,9 @@ Replace `/ABSOLUTE/PATH/TO/REPO` with the full path to your cloned repository.
|
|
|
188
192
|
}
|
|
189
193
|
```
|
|
190
194
|
|
|
191
|
-
|
|
195
|
+
Replace `/ABSOLUTE/PATH/TO/REPO` with the full path to your cloned repository.
|
|
192
196
|
|
|
193
|
-
|
|
194
|
-
npx @shippo/shippo-mcp start --api-key-header "ShippoToken YOUR_SHIPPO_API_KEY" --shippo-api-version 2018-02-08
|
|
195
|
-
```
|
|
197
|
+
</details>
|
|
196
198
|
|
|
197
199
|
<!-- End Configuration [configuration] -->
|
|
198
200
|
|