@shippo/shippo-mcp 3.0.0 → 3.0.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 +2 -3
- package/package.json +17 -5
package/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# <img src="https://raw.githubusercontent.com/goshippo/ai/main/tools/modelcontextprotocol/assets/shippo-logo.png" width="30" alt="Shippo logo"> Shippo MCP Server
|
|
2
2
|
|
|
3
|
-
>
|
|
4
|
-
> This package is a thin **local bridge** to the hosted Shippo MCP server at `https://mcp.shippo.com`. It runs over stdio for MCP clients that connect to a local command, and signs you in with **OAuth** in your browser (no API key required). Tool discovery and execution happen on the hosted server, so the local tool surface always matches hosted. If your client speaks remote MCP with OAuth, you can connect to `https://mcp.shippo.com` directly instead of using this package.
|
|
3
|
+
> **Note:** This package is a thin **local bridge** to the hosted Shippo MCP server at `https://mcp.shippo.com`. It runs over stdio for MCP clients that connect to a local command, and signs you in with **OAuth** in your browser (no API key required). Tool discovery and execution happen on the hosted server, so the local tool surface always matches hosted. If your client speaks remote MCP with OAuth, you can connect to `https://mcp.shippo.com` directly instead of using this package.
|
|
5
4
|
|
|
6
5
|
Model Context Protocol (MCP) Server for the Shippo API.
|
|
7
6
|
|
|
@@ -86,7 +85,7 @@ claude mcp remove shippo-mcp
|
|
|
86
85
|
|
|
87
86
|
**Desktop Extension (recommended):**
|
|
88
87
|
|
|
89
|
-
[](https://github.com/goshippo/ai/releases/download/shippo-mcp-v3.0.
|
|
88
|
+
[](https://github.com/goshippo/ai/releases/download/shippo-mcp-v3.0.1/shippo.dxt)
|
|
90
89
|
|
|
91
90
|
Click to download `shippo.dxt`, then open it in Claude Desktop to install (or Settings -> Extensions -> Advanced -> Install Extension). It signs in with OAuth on first use, so there is nothing to configure. You can also build it yourself with `npm run build-dxt`.
|
|
92
91
|
|
package/package.json
CHANGED
|
@@ -1,16 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shippo/shippo-mcp",
|
|
3
3
|
"mcpName": "com.shippo/shippo-mcp",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.1",
|
|
5
5
|
"description": "Multi-carrier shipping for AI agents: compare rates, buy labels, track packages, validate addresses. Local bridge to the hosted Shippo MCP server.",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"repository": {
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/goshippo/ai.git",
|
|
10
|
+
"directory": "tools/modelcontextprotocol"
|
|
11
|
+
},
|
|
8
12
|
"homepage": "https://docs.goshippo.com/docs/Guides_general/MCPServer",
|
|
9
13
|
"bugs": "https://github.com/goshippo/ai/issues",
|
|
10
14
|
"type": "module",
|
|
11
|
-
"bin": {
|
|
12
|
-
|
|
13
|
-
|
|
15
|
+
"bin": {
|
|
16
|
+
"shippo-mcp": "dist/index.js"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"LICENSE",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=18"
|
|
25
|
+
},
|
|
14
26
|
"scripts": {
|
|
15
27
|
"build": "tsup",
|
|
16
28
|
"typecheck": "tsc --noEmit",
|