MCP Catalogs
Home

everything vs postman-mcp-server

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
postman-mcp-server
by postmanlabs
Stars★ 85,748★ 240
30d uses
Score7751
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

Official MCP test server exercising all protocol features for client builders.

postman-mcp-server · Summary

Postman MCP Server connects AI tools to Postman APIs for testing, collections management, and code generation.

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

postman-mcp-server · Use cases

  • Automated API testing using Postman collections
  • Natural language management of workspaces and environments
  • Client code generation from API definitions

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

postman-mcp-server · Install

Remote Server (Recommended)

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "postman": {
      "command": "http",
      "args": ["https://mcp.postman.com/minimal"]
    }
  }
}

For VS Code, use the [Install in VS Code](https://insiders.vscode.dev/redirect/mcp/install?name=postman_mcp_server&config=%7B%22type%22%3A%20%22http%22%2C%22url%22%3A%20%22https%3A%2F%2Fmcp.postman.com%2Fminimal%22%2C%22headers%22%3A%7B%22Authorization%22%3A%22Bearer%20YOUR_API_KEY%22%7D%7D) button or configure manually in .vscode/mcp.json.

Comparison generated from public README + GitHub signals. Last updated automatically.