diff --git a/README.md b/README.md index c3db446..9af9d0c 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,9 @@ Integrate your MCP server with Visual Studio Code and use it with VS Code extens "servers": { "postman-api-mcp": { "type": "stdio", - "command": "node", + "command": "npx", "args": [ - "${workspaceFolder}/dist/src/index.js", + "@postman/postman-mcp-server", "--full" // (optional) Use this flag to enable full mode ], "env": { @@ -78,9 +78,9 @@ To integrate the MCP server with Cursor, click the following button: ### VS Code integration -> By default, the server provides 37 tools. Use **Full** (`https://mcp.postman.com//mcp`) mode to access all 106 tools. +> By default, the server provides 37 tools. Use **Full** (`https://mcp.postman.com/mcp`) mode to access all 106 tools. -To install in VS Code, add the following to the *.vscode/mcp.json* file: +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: ```json { diff --git a/dist/package.json b/dist/package.json index 56bdcd2..9a5ebaa 100644 --- a/dist/package.json +++ b/dist/package.json @@ -1,6 +1,6 @@ { "name": "@postman/postman-mcp-server", - "version": "2.1.1", + "version": "2.1.2", "description": "A simple MCP server to operate on the Postman API", "main": "dist/src/index.js", "type": "module", diff --git a/package-lock.json b/package-lock.json index 907ecb5..3c87b0e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@postman/postman-mcp-server", - "version": "2.1.1", + "version": "2.1.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@postman/postman-mcp-server", - "version": "2.1.1", + "version": "2.1.2", "license": "Apache-2.0", "dependencies": { "@apidevtools/swagger-parser": "^11.0.0", diff --git a/package.json b/package.json index 54f84b0..92a75b0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@postman/postman-mcp-server", - "version": "2.1.1", + "version": "2.1.2", "description": "A simple MCP server to operate on the Postman API", "main": "dist/src/index.js", "type": "module",