Nestjs Api To Postman Collection

by ChiragKr04

396 downloads
Not rated
GitHub

About

A Model Context Protocol (MCP) tool that automatically converts your NestJS controllers into importable Postman API collections. This eliminates the need to manually create Postman collections or implement complex swagger documentation directly within your code.

Details

Author
ChiragKr04
Downloads
396
Categories
Developer Tools, API

- Automatically generates Postman collections from NestJS controllers
- Detects request/response types and creates meaningful examples
- Identifies authentication guards and adds auth configurations
- Captures routes, methods, request bodies, and query parameters
- Works without modifying your NestJS codebase
- Integrates with any MCP‑compatible AI assistant

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Nestjs Api To Postman Collection
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install dependencies, build the project, then configure your MCP‑compatible AI assistant (e.g., Claude Desktop, VS Code tools) with the command and path to dist/main.js. Alternatively, run the CLI directly: node dist/main.js generate <project-path> -o output.json. Example prompt: "Generate a Postman collection for my user.controller.ts file."

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "nestjs api to postman collection": {
            "Nest-Js-MCP-Postman-Generator": {
                "command": "node",
                "args": [
                    "<path_of_cloned_repo>/nestjs-mcp-generator/dist/main.js",
                    "start"
                ]
            }
        }
    }
}

McpServers

{
    "Nest-Js-MCP-Postman-Generator": {
        "command": "node",
        "args": [
            "<path_of_cloned_repo>/nestjs-mcp-generator/dist/main.js",
            "start"
        ]
    }
}

NestJS to Postman Collection Generator (MCP)

License: ISC

A Model Context Protocol (MCP) tool that automatically converts your NestJS controllers into importable Postman API collections. This eliminates the need to manually create Postman collections or implement complex swagger documentation directly within your code.

Features

- 🚀 Automatic API Collection Generation: Transform NestJS controllers into complete Postman collections with a single command
- 🔍 Intelligent Type Detection: Automatically detects request and response types to generate meaningful examples
- 🔐 Auth Integration: Identifies authentication guards and adds appropriate auth configurations
- 📊 Complete Endpoint Documentation: Captures routes, methods, request bodies, and query parameters
- 🧩 Clean Integration: Works without modifying your NestJS codebase (no decorators or comments needed)
- 🔌 MCP Integration: Works as an AI tool with any Model Context Protocol compatible assistant

Installation

1. Clone the repository:

git clone https://github.com/ChiragKr04/nestJS-api-postman-MCP.git
cd nestJS-api-postman-MCP

2. Install dependencies and build the project:

npm install
npm run build

Usage

As an MCP Tool

This tool is designed to work with any AI assistant that supports the Model Context Protocol. After installation, you need to configure your MCP-compatible AI assistant to use this tool.

Configuration

For Claude Desktop

Add the following configuration to your Claude Desktop settings:

{
  "mcpServers": {
    "Nest-Js-MCP-Postman-Generator": {
      "command": "node",
      "args": [
        "/path/to/your/clone/nestJS-api-postman-MCP/dist/main.js",
        "start"
      ]
    }
  }
}
For GitHub Copilot/Cursor/Windsurf/Other VS Code based AI tools

Add the following configuration to your VS Code settings.json:

{
  "mcp": {
    "servers": {
      "Nest-Js-MCP-Postman-Generator": {
        "command": "node",
        "args": [
          "/path/to/your/clone/nestJS-api-postman-MCP/dist/main.js",
          "start"
        ]
      }
    }
  }
}

> Note: Replace /path/to/your/clone/ with the actual path where you cloned the repository.

Usage

Once configured:

1. Just ask the AI to generate a Postman collection for your NestJS controller
2. The AI will use this tool to analyze your controller and generate the collection

Example prompt:

Generate a Postman collection for my user.controller.ts file in my NestJS project.

Direct Command Line Usage

The tool also provides a command-line interface for direct usage:

# Generate using the CLI
node dist/main.js generate /path/to/nestjs/project -o collection.json -n "My API Collection"

API Reference

When used as an MCP tool, the following parameters are available:

| Parameter | Type | Description |
| -------------------- | -------- | ------------------------------------------------------------- |
| controllerFilePath | string | Path to the NestJS controller file (relative to project root) |
| projectPath | string | Path to the NestJS project (containing tsconfig.json) |
| collectionName | string | Name for the generated Postman collection |

Why Use This?

No More Manual Updates

Each time you change your API endpoints, your Postman collection automatically stays in sync.

Clean Code

Unlike Swagger/OpenAPI decorators that clutter your codebase with documentation:

// No more of this annotation clutter
@ApiOperation({ summary: 'Create a new user' })
@ApiBody({ type: CreateUserDto })
@ApiResponse({ status: 201, description: 'User created successfully' })
@ApiResponse({ status: 400, description: 'Bad Request' })
@Post()
create(@Body() createUserDto: CreateUserDto) {
  return this.userService.create(createUserDto);
}

Accurate Documentation

The tool analyzes your actual code including:

- Route paths from controller decorators
- HTTP methods from method decorators
- Request body types from parameter decorators
- Query parameters and their types
- Authentication requirements

Example Output

The generated Postman collection will look like this:

{
  "name": "User API",
  "item": [
    {
      "name": "POST /api/users (createUser)",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/api/users",
          "host": ["{{baseUrl}}"],
          "path": ["api", "users"],
          "query": []
        },
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"user@example.com\",\n  \"password\": \"password123\",\n  \"name\": \"John Doe\"\n}"
        },
        "description": "Generated from createUser in UserController."
      }
    }
  ]
}

Requirements

- Node.js 16+
- A NestJS project with TypeScript

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the ISC License - see the LICENSE file for details.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.