Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Postman MCP Server

The Postman MCP Server connects Postman to AI tools, giving AI agents and assistants the ability to access workspaces, manage collections and environments, evaluate APIs, and automate workflows through natural language interactions.
The **Postman MCP Server** implements the [Model Context Protocol (MCP)](https://modelcontextprotocol.io) to connect AI agents and coding assistants — including Claude Code, Cursor, VS Code Copilot, GitHub Copilot CLI, and Gemini CLI — directly to your Postman workspaces, collections, specifications, and environments.

Postman also offers the server as an [npm package](https://www.npmjs.com/package/@postman/postman-mcp-server).

Expand Down Expand Up @@ -111,3 +111,9 @@ For Docker setup and installation, see [DOCKER.md](https://github.com/postmanlab
- Visit the [Postman Community](https://community.postman.com/) to share what you've built, ask questions, and get help.
- You can connect to both the remote and local servers and test them using the [Postman MCP Server collection](https://www.postman.com/postman/postman-public-workspace/collection/681dc649440b35935978b8b7).

---

## Keywords

Model Context Protocol · MCP Server · Postman · AI Agents · Claude Code · Cursor · VS Code · Specifications · REST API · API Testing · TypeScript · OpenAPI

16 changes: 14 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@postman/postman-mcp-server",
"version": "2.11.0",
"description": "MCP server for Postman — connect AI agents to your workspaces, collections, and APIs",
"description": "Postman MCP Server — connect AI agents (Claude Code, Cursor, VS Code Copilot, Gemini CLI) to your Postman collections, specifications, and environments via Model Context Protocol (MCP)",
"mcpName": "com.postman/postman-mcp-server",
"main": "dist/src/index.js",
"type": "module",
Expand Down Expand Up @@ -53,10 +53,22 @@
"keywords": [
"mcp",
"model-context-protocol",
"mcp-server",
"postman",
"api",
"api-testing",
"ai",
"llm",
"tools"
"tools",
"claude",
"cursor",
"vscode",
"copilot",
"gemini",
"agent",
"openai",
"collections",
"rest-api"
],
"author": {
"name": "Postman, Inc.",
Expand Down
Loading