{
  "name": "@postman/postman-mcp-server",
  "version": "2.12.0",
  "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",
  "bin": "dist/src/index.js",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.27.1",
    "dotenv": "^17.3.1",
    "newman": "^6.2.2",
    "nunjucks": "^3.2.4",
    "uuid": "^13.0.0",
    "zod": "^3.25.76"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/node": "^24",
    "eslint": "^10.0.2",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-unused-imports": "^4.4.1",
    "prettier": "^3.8.1",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.56.1",
    "vitest": "^4.0.18"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "mcp-server",
    "postman",
    "api",
    "api-testing",
    "ai",
    "llm",
    "tools",
    "claude",
    "cursor",
    "vscode",
    "copilot",
    "gemini",
    "agent",
    "openai",
    "collections",
    "rest-api"
  ],
  "author": {
    "name": "Postman, Inc.",
    "url": "https://www.postman.com"
  },
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/postmanlabs/postman-mcp-server.git"
  },
  "bugs": {
    "url": "https://github.com/postmanlabs/postman-mcp-server/issues"
  },
  "homepage": "https://www.postman.com/product/mcp-server/",
  "scripts": {
    "preinstall": "npx only-allow pnpm",
    "start:stdio": "node dist/src/index.js",
    "build": "eslint --fix ./src && prettier --write \"src/**/*.ts\" && tsc",
    "test": "vitest",
    "lint": "eslint",
    "lint:fix": "eslint --fix",
    "preversion": "pnpm run build",
    "version": "git add dist/",
    "release": "pnpm version",
    "release-custom": "node scripts/release.js"
  }
}