Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This is a lightweight solution that's ideal for integration with editors and too
### VS Code integration

> **Note:**
> VS Code only supports up to 128 tools. By default, this server provides 37 tools (minimal mode). Use the `--full` flag to access all 106 tools, but note this may exceed VS Code's 128 tool limit when combined with other MCP servers.
> By default, this server provides 37 tools (minimal mode). Use the `--full` flag to access all 106 tools.

Integrate your MCP server with Visual Studio Code and use it with VS Code extensions that support MCP. To do this, do the following:

Expand Down Expand Up @@ -78,15 +78,15 @@ To integrate the MCP server with Cursor, click the following button:

### VS Code integration

> VS Code only supports up to 128 tools. By default, the server provides 37 tools. Use **Full** (`https://mcp.postman.com//mcp`) mode to access all 106 tools, but note this may exceed VS Code's 128 tool limit when combined with other MCP servers.
> 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:

```json
{
"servers": {
"postman-api-http-server": {
"type": "sse",
"type": "http",
"url": "https://mcp.postman.com/{minimal | mcp}", // choose "minimal" or "mcp"
"headers": {
"Authorization": "Bearer ${input:postman-api-key}"
Expand All @@ -113,7 +113,6 @@ When prompted, enter your Postman API key. Afterwards, the agent performs calls
- `delete-environment` → `deleteEnvironment`
- **Tool availability changes**
- The default (Minimal) behavior provides only 37 essential tools.
- Minimal mode is designed to stay within VS Code's 128 tool limit when combined with other MCP servers.
- The `--full` flag provides access to all 106 tools.

## Questions and support
Expand Down
Loading