@shippo/shippo-mcp 0.5.0 → 0.6.0
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 +10 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ Model Context Protocol (MCP) Server for the Shippo API.
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
You must register for a [Shippo account](https://apps.goshippo.com/join) to use our API. It's free to sign up. Only pay to print a live label — test labels are free.
|
|
11
|
-
To use the MCP server, you
|
|
11
|
+
To use the MCP server, you'll need an [API Token](https://docs.goshippo.com/docs/guides_general/authentication/). Replace `YOUR_SHIPPO_API_KEY` with your own token (including the `ShippoToken ` prefix) in the examples below.
|
|
12
12
|
|
|
13
13
|
<!-- Start Summary [summary] -->
|
|
14
14
|
## Summary
|
|
@@ -37,9 +37,9 @@ Shippo MCP Server: Use this MCP Server to integrate with the Shippo service usin
|
|
|
37
37
|
<details>
|
|
38
38
|
<summary>Cursor</summary>
|
|
39
39
|
|
|
40
|
-
[](https://cursor.com/en-US/install-mcp?name=shippo-mcp&config=
|
|
40
|
+
[](https://cursor.com/en-US/install-mcp?name=shippo-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBzaGlwcG8vc2hpcHBvLW1jcCIsInN0YXJ0IiwiLS1hcGkta2V5LWhlYWRlciIsIlNoaXBwb1Rva2VuIFlPVVJfU0hJUFBPX0FQSV9LRVkiLCItLXNoaXBwby1hcGktdmVyc2lvbiIsIjIwMTgtMDItMDgiXX0=)
|
|
41
41
|
|
|
42
|
-
> **
|
|
42
|
+
> ⚠️ **Important**: Click **Install** first to add the server, then go to **Settings → Tools & MCP → shippo-mcp (edit)** to edit the configuration. Replace `YOUR_SHIPPO_API_KEY` with your actual API key (keep the `ShippoToken ` prefix), then save `mcp.json`, and toggle shippo-mcp on and off for changes to take effect.
|
|
43
43
|
|
|
44
44
|
Or manually:
|
|
45
45
|
|
|
@@ -57,7 +57,7 @@ Or manually:
|
|
|
57
57
|
"@shippo/shippo-mcp",
|
|
58
58
|
"start",
|
|
59
59
|
"--api-key-header",
|
|
60
|
-
"YOUR_SHIPPO_API_KEY",
|
|
60
|
+
"ShippoToken YOUR_SHIPPO_API_KEY",
|
|
61
61
|
"--shippo-api-version",
|
|
62
62
|
"2018-02-08"
|
|
63
63
|
]
|
|
@@ -72,7 +72,7 @@ Or manually:
|
|
|
72
72
|
<summary>Claude Code CLI</summary>
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
|
-
claude mcp add @shippo/shippo-mcp npx @shippo-mcp start -- --api-key-header
|
|
75
|
+
claude mcp add @shippo/shippo-mcp npx @shippo-mcp start -- --api-key-header "ShippoToken YOUR_SHIPPO_API_KEY" --shippo-api-version 2018-02-08
|
|
76
76
|
```
|
|
77
77
|
|
|
78
78
|
</details>
|
|
@@ -99,7 +99,7 @@ Paste the following config in the configuration
|
|
|
99
99
|
"@shippo/shippo-mcp",
|
|
100
100
|
"start",
|
|
101
101
|
"--api-key-header",
|
|
102
|
-
"
|
|
102
|
+
"ShippoToken YOUR_SHIPPO_API_KEY",
|
|
103
103
|
"--shippo-api-version",
|
|
104
104
|
"2018-02-08"
|
|
105
105
|
]
|
|
@@ -116,7 +116,7 @@ Paste the following config in the configuration
|
|
|
116
116
|
To start the MCP server, run:
|
|
117
117
|
|
|
118
118
|
```bash
|
|
119
|
-
npx @shippo/shippo-mcp start --api-key-header
|
|
119
|
+
npx @shippo/shippo-mcp start --api-key-header "ShippoToken YOUR_SHIPPO_API_KEY" --shippo-api-version 2018-02-08
|
|
120
120
|
```
|
|
121
121
|
|
|
122
122
|
For a full list of server arguments, run:
|
|
@@ -150,7 +150,7 @@ To run the server locally from source (e.g., for development), use the following
|
|
|
150
150
|
"/ABSOLUTE/PATH/TO/REPO/bin/mcp-server.js",
|
|
151
151
|
"start",
|
|
152
152
|
"--api-key-header",
|
|
153
|
-
"YOUR_SHIPPO_API_KEY",
|
|
153
|
+
"ShippoToken YOUR_SHIPPO_API_KEY",
|
|
154
154
|
"--shippo-api-version",
|
|
155
155
|
"2018-02-08"
|
|
156
156
|
]
|
|
@@ -176,7 +176,7 @@ Replace `/ABSOLUTE/PATH/TO/REPO` with the full path to your cloned repository.
|
|
|
176
176
|
"@shippo/shippo-mcp",
|
|
177
177
|
"start",
|
|
178
178
|
"--api-key-header",
|
|
179
|
-
"YOUR_SHIPPO_API_KEY",
|
|
179
|
+
"ShippoToken YOUR_SHIPPO_API_KEY",
|
|
180
180
|
"--shippo-api-version",
|
|
181
181
|
"2018-02-08"
|
|
182
182
|
]
|
|
@@ -188,7 +188,7 @@ Replace `/ABSOLUTE/PATH/TO/REPO` with the full path to your cloned repository.
|
|
|
188
188
|
### Command Line
|
|
189
189
|
|
|
190
190
|
```bash
|
|
191
|
-
npx @shippo/shippo-mcp start --api-key-header YOUR_SHIPPO_API_KEY --shippo-api-version 2018-02-08
|
|
191
|
+
npx @shippo/shippo-mcp start --api-key-header "ShippoToken YOUR_SHIPPO_API_KEY" --shippo-api-version 2018-02-08
|
|
192
192
|
```
|
|
193
193
|
|
|
194
194
|
<!-- End Configuration [configuration] -->
|