npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

postman-lite-mcp

v1.0.4

Published

Model Context Protocol server for Postman API integration

Readme

Postman Lite MCP

A lightweight Model Context Protocol (MCP) server for Postman API integration. This server enables AI assistants like Claude to interact with the Postman API to manage collections, folders, requests, and responses.

🚦 Getting Started

⚙️ Prerequisites

📥 Installation

Via npm (recommended)

npm install -g postman-lite-mcp

From source

git clone <repository-url>
cd postman-mcp
npm install
npm run build

🚀 Usage

With Claude Desktop

Option 1: Using npx (simplest)

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "postman": {
      "command": "npx",
      "args": ["postman-lite-mcp", "--apikey=YOUR-POSTMAN-API-KEY"]
    }
  }
}

Option 2: Using Claude MCP CLI

claude mcp add postman-lite-mcp --apikey=YOUR-POSTMAN-API-KEY

Option 3: Global installation

After installing globally with npm:

{
  "mcpServers": {
    "postman": {
      "command": "postman-lite-mcp",
      "args": ["--apikey=YOUR-POSTMAN-API-KEY"]
    }
  }
}

Configuration

The server requires a Postman API key which can be provided:

  1. As a command-line argument: --apikey=YOUR-KEY
  2. As an environment variable: POSTMAN_PUBLIC_WORKSPACE_API_KEY
  3. Per-tool basis: Each tool has an optional apiKey parameter that can be set individually

🛠️ Available Tools

The server provides the following tools for interacting with the Postman API:

Workspace Management

  • get_all_workspaces - Get all workspaces accessible to the user
    • Parameters: type?, include?, apiKey?
  • get_a_workspace - Get information about a specific workspace
    • Parameters: workspaceId, apiKey?

Collection Management

  • get_collection - Retrieve information about a collection
    • Parameters: collectionId, access_key?, model?, apiKey?
  • get_a_folder - Get details about a specific folder
    • Parameters: collectionId, folderId, ids?, uid?, populate?, apiKey?

Request Management

  • get_a_request - Retrieve request details
    • Parameters: collectionId, requestId, ids?, uid?, populate?, apiKey?
  • create_a_request - Create a new request with full configuration
    • Parameters: collectionId, name, url, method?, description?, headers?, and more
  • update_a_request - Update existing request
    • Parameters: collectionId, requestId, plus any fields to update
  • delete_a_request - Delete a request
    • Parameters: collectionId, requestId, apiKey?

Docker Deployment

docker build -t postman-lite-mcp .
docker run -i --rm -e POSTMAN_PUBLIC_WORKSPACE_API_KEY=YOUR-KEY postman-lite-mcp

For Claude Desktop:

{
  "mcpServers": {
    "postman": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "-e", "POSTMAN_PUBLIC_WORKSPACE_API_KEY=YOUR-KEY", "postman-lite-mcp"]
    }
  }
}

📋 List Available Tools

# If installed globally
postman-lite-mcp tools

# From source
node dist/cli.js tools

🔧 Development

# Clone the repository
git clone <repository-url>
cd postman-mcp

# Install dependencies
npm install

# Build TypeScript
npm run build

# Run locally
node dist/index.js --apikey=YOUR-KEY

🤝 Contributing

We welcome contributions! Please see our Contributing Guidelines for details on how to submit pull requests, report issues, and contribute to the project.

Important: Direct pushes to master are not allowed. All changes must be submitted via pull request.

🐛 Debugging

To debug the MCP server with the MCP Inspector:

# First build the project
npm run build

# Then use the MCP Inspector
npx @modelcontextprotocol/inspector

The MCP Inspector provides a web interface to test and debug your MCP server tools interactively.

📝 License

MIT