@postman/postman-mcp-server 2.1.1 → 2.1.2
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 +4 -4
- 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": {
|
|
@@ -78,9 +78,9 @@ To integrate the MCP server with Cursor, click the following button:
|
|
|
78
78
|
|
|
79
79
|
### VS Code integration
|
|
80
80
|
|
|
81
|
-
> By default, the server provides 37 tools. Use **Full** (`https://mcp.postman.com
|
|
81
|
+
> By default, the server provides 37 tools. Use **Full** (`https://mcp.postman.com/mcp`) mode to access all 106 tools.
|
|
82
82
|
|
|
83
|
-
To install in VS Code, add the following to the *.vscode/mcp.json* file:
|
|
83
|
+
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
84
|
|
|
85
85
|
```json
|
|
86
86
|
{
|
package/dist/package.json
CHANGED