@shippo/shippo-mcp 0.6.0 → 0.8.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.
Files changed (2) hide show
  1. package/README.md +6 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -112,16 +112,19 @@ Paste the following config in the configuration
112
112
 
113
113
 
114
114
  <details>
115
- <summary> Stdio installation via npm </summary>
116
- To start the MCP server, run:
115
+ <summary> Manual CLI usage </summary>
116
+
117
+ If you need to start the MCP server manually (e.g., for use with other MCP clients or debugging), run:
117
118
 
118
119
  ```bash
119
120
  npx @shippo/shippo-mcp start --api-key-header "ShippoToken YOUR_SHIPPO_API_KEY" --shippo-api-version 2018-02-08
120
121
  ```
121
122
 
123
+ > **Note:** This starts the server in stdio mode, waiting for MCP protocol messages. It won't show an interactive prompt — it's designed to be connected to by an MCP client like Cursor or Claude Desktop.
124
+
122
125
  For a full list of server arguments, run:
123
126
 
124
- ```
127
+ ```bash
125
128
  npx @shippo/shippo-mcp --help
126
129
  ```
127
130
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shippo/shippo-mcp",
3
- "version": "0.6.0",
3
+ "version": "0.8.0",
4
4
  "author": "shippo",
5
5
  "type": "module",
6
6
  "sideEffects": false,