@shippo/shippo-mcp 0.8.3 → 0.8.4
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 +25 -0
- package/bin/mcp-server.js +5 -5
- package/bin/mcp-server.js.map +4 -4
- package/esm/lib/config.d.ts +2 -2
- package/esm/lib/config.js +2 -2
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.js +1 -1
- package/manifest.json +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
package/README.md
CHANGED
|
@@ -22,6 +22,7 @@ Shippo MCP Server: Use this MCP Server to integrate with the Shippo service usin
|
|
|
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
23
|
* [Quick Start](#quick-start)
|
|
24
24
|
* [Configuration](#configuration)
|
|
25
|
+
* [Updating](#updating)
|
|
25
26
|
* [Features](#features)
|
|
26
27
|
* [Security](#security)
|
|
27
28
|
* [Contributions](#contributions)
|
|
@@ -198,6 +199,30 @@ Replace `/ABSOLUTE/PATH/TO/REPO` with the full path to your cloned repository.
|
|
|
198
199
|
|
|
199
200
|
<!-- End Configuration [configuration] -->
|
|
200
201
|
|
|
202
|
+
<!-- Start Updating [updating] -->
|
|
203
|
+
|
|
204
|
+
## Updating
|
|
205
|
+
|
|
206
|
+
The MCP server is distributed via npm. To ensure you have the latest features and bug fixes, update periodically.
|
|
207
|
+
|
|
208
|
+
### Check Current Version
|
|
209
|
+
|
|
210
|
+
```bash
|
|
211
|
+
npx @shippo/shippo-mcp --version
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
### Update to Latest Version
|
|
215
|
+
|
|
216
|
+
```bash
|
|
217
|
+
npx clear-npx-cache
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
Next time you start your MCP client (Cursor, Claude), it will fetch the latest version.
|
|
221
|
+
|
|
222
|
+
> **Tip:** After updating, toggle your MCP server off and on in Cursor/Claude settings for changes to take effect.
|
|
223
|
+
|
|
224
|
+
<!-- End Updating [updating] -->
|
|
225
|
+
|
|
201
226
|
<!-- Start Features [features] -->
|
|
202
227
|
|
|
203
228
|
## Features
|
package/bin/mcp-server.js
CHANGED
|
@@ -46623,9 +46623,9 @@ var init_config = __esm(() => {
|
|
|
46623
46623
|
SDK_METADATA = {
|
|
46624
46624
|
language: "typescript",
|
|
46625
46625
|
openapiDocVersion: "2018-02-08",
|
|
46626
|
-
sdkVersion: "0.8.
|
|
46626
|
+
sdkVersion: "0.8.4",
|
|
46627
46627
|
genVersion: "2.769.1",
|
|
46628
|
-
userAgent: "speakeasy-sdk/mcp-typescript 0.8.
|
|
46628
|
+
userAgent: "speakeasy-sdk/mcp-typescript 0.8.4 2.769.1 2018-02-08 @shippo/shippo-mcp"
|
|
46629
46629
|
};
|
|
46630
46630
|
});
|
|
46631
46631
|
|
|
@@ -60862,7 +60862,7 @@ Updates an existing webhook using the webhook object ID.`,
|
|
|
60862
60862
|
function createMCPServer(deps) {
|
|
60863
60863
|
const server = new McpServer({
|
|
60864
60864
|
name: "ShippoSDK",
|
|
60865
|
-
version: "0.8.
|
|
60865
|
+
version: "0.8.4"
|
|
60866
60866
|
});
|
|
60867
60867
|
const getClient = deps.getSDK || (() => new ShippoSDKCore({
|
|
60868
60868
|
security: deps.security,
|
|
@@ -62254,7 +62254,7 @@ var routes = ln({
|
|
|
62254
62254
|
var app = _e(routes, {
|
|
62255
62255
|
name: "mcp",
|
|
62256
62256
|
versionInfo: {
|
|
62257
|
-
currentVersion: "0.8.
|
|
62257
|
+
currentVersion: "0.8.4"
|
|
62258
62258
|
}
|
|
62259
62259
|
});
|
|
62260
62260
|
Yt(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -62262,5 +62262,5 @@ export {
|
|
|
62262
62262
|
app
|
|
62263
62263
|
};
|
|
62264
62264
|
|
|
62265
|
-
//# debugId=
|
|
62265
|
+
//# debugId=7AFC15D19A9C5A6364756E2164756E21
|
|
62266
62266
|
//# sourceMappingURL=mcp-server.js.map
|