@postman/postman-mcp-server 2.1.1 → 2.1.3
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 -5
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,9 +27,9 @@ Integrate your MCP server with Visual Studio Code and use it with VS Code extens
|
|
|
27
27
|
"servers": {
|
|
28
28
|
"postman-api-mcp": {
|
|
29
29
|
"type": "stdio",
|
|
30
|
-
"command": "
|
|
30
|
+
"command": "npx",
|
|
31
31
|
"args": [
|
|
32
|
-
"
|
|
32
|
+
"@postman/postman-mcp-server",
|
|
33
33
|
"--full" // (optional) Use this flag to enable full mode
|
|
34
34
|
],
|
|
35
35
|
"env": {
|
|
@@ -60,7 +60,12 @@ Configure the extension to use the **postman-api-mcp** server, a local STDIO-bas
|
|
|
60
60
|
|
|
61
61
|
### Claude integration
|
|
62
62
|
|
|
63
|
-
To integrate the MCP server with Claude, check the latest [Postman MCP server release](https://github.com/postmanlabs/postman-mcp-server/releases) and
|
|
63
|
+
To integrate the MCP server with Claude, check the latest [Postman MCP server release](https://github.com/postmanlabs/postman-mcp-server/releases) and download one of the available `.dxt` files:
|
|
64
|
+
|
|
65
|
+
- **postman-api-mcp-minimal.dxt** - Contains 37 essential tools for basic Postman operations
|
|
66
|
+
- **postman-api-mcp-full.dxt** - Contains all 106+ tools for comprehensive Postman functionality
|
|
67
|
+
|
|
68
|
+
For more information, see Anthropic's [Claude Desktop Extensions](https://www.anthropic.com/engineering/desktop-extensions) documentation.
|
|
64
69
|
|
|
65
70
|
## Streamable HTTP
|
|
66
71
|
|
|
@@ -78,9 +83,9 @@ To integrate the MCP server with Cursor, click the following button:
|
|
|
78
83
|
|
|
79
84
|
### VS Code integration
|
|
80
85
|
|
|
81
|
-
> By default, the server provides 37 tools. Use **Full** (`https://mcp.postman.com
|
|
86
|
+
> By default, the server provides 37 tools. Use **Full** (`https://mcp.postman.com/mcp`) mode to access all 106 tools.
|
|
82
87
|
|
|
83
|
-
To install in VS Code, add the following to the *.vscode/mcp.json* file:
|
|
88
|
+
To install in VS Code, you can use the [Postman VS Code Extension](https://marketplace.visualstudio.com/items?itemName=Postman.postman-for-vscode). Or you can add the following to the *.vscode/mcp.json* file:
|
|
84
89
|
|
|
85
90
|
```json
|
|
86
91
|
{
|
package/dist/package.json
CHANGED