MCP.so
Sign In

Postman MCP Generator

@agentesq

About Postman MCP Generator

Weaviate MCP Server

Basic information

Category

Databases

Runtime

node

Transports

stdio

Publisher

agentesq

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "postman-weaviate-mcp-server": {
      "command": "docker",
      "args": [
        "build",
        "-t",
        "<your_server_name>",
        "."
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is Postman MCP Generator?

Postman MCP Generator is an MCP‑compatible server (mcpServer.js) that exposes selected Postman API requests as automatically generated JavaScript tools. It is built for developers who want to connect their APIs to MCP clients such as Claude Desktop or the Postman Desktop Application.

How to use Postman MCP Generator?

Install Node.js v18+ and npm, run npm install, set API key environment variables in .env, then execute node mcpServer.js to start the server via STDIO. Optionally deploy with Docker or enable Server‑Sent Events using the --sse flag.

Key features of Postman MCP Generator

  • MCP‑compliant server for exposing API requests as tools.
  • Automatic generation of JavaScript tool files for each selected request.
  • STDIO and SSE transport modes.
  • Docker deployment support for production.
  • Easy tool addition by regenerating and copying files.

Use cases of Postman MCP Generator

  • Connect Postman API collections to Claude Desktop for agentic workflows.
  • Test API requests directly from the Postman Desktop Application.
  • Automate API interactions through LLM‑driven tools.
  • Deploy a containerized MCP server for production environments.

FAQ from Postman MCP Generator

What Node.js version is required?

Node.js v18+ is required (v20+ recommended). Lower versions may lack fetch, which the generated tools use for HTTP calls.

How do I configure API keys?

Set environment variables in .env – one per workspace (e.g., ACME_API_KEY=...). The generated tools read these variables to authenticate requests. You can manually adjust the logic if needed.

How can I test the MCP server?

Use the Postman Desktop Application with a STDIO MCP request pointing to node <absolute‑path>/mcpServer.js. Alternatively, connect it to Claude Desktop by adding a JSON entry in the MCP configuration.

How do I add new tools to the server?

Visit the Postman MCP Generator, select new API requests, download the generated server, copy the new tool files into your project’s tools/ folder, and update tools/paths.js.

What transports does the server support?

The default transport is STDIO. Use the --sse flag to run the server with Server‑Sent Events (SSE) support.

Comments

More Databases MCP servers