MCP.so
Sign In
Servers

IB Postman Tool Generator

@ibproduct

A MCP Server for interacting with IntelligenceBank's API documentation.

A Model Context Protocol (MCP) server that provides tools for retrieving documentation from Postman collections and generating AI actions.

Features

  • List and search Postman collections
  • Navigate collection structures
  • Get detailed request information
  • Generate code actions from Postman requests
  • Optional integration with multiple AI frameworks
  • TypeScript/JavaScript code generation

Documentation

Installation

  1. Clone the repository:
git clone https://github.com/ibproduct/ib-postman-tool-generator.git
cd ib-postman-tool-generator
  1. Install dependencies:
npm install
  1. Build the server:
npm run build
  1. Configure the server following the Configuration Guide

Usage

See the Prompt Templates guide for detailed usage instructions and examples.

Development

Git Workflow

  1. Before starting development:
git pull origin main
npm install  # If dependencies have changed
  1. During development:
  • The .gitignore file is configured to exclude:
    • Build artifacts (build/, dist/)
    • Dependencies (node_modules/)
    • Environment files (.env*)
    • IDE files (.vscode/, .idea/)
    • Logs and debug files
    • System files (.DS_Store, Thumbs.db)
  1. Committing changes:
git add .  # Stage changes (respects .gitignore)
git commit -m "type: description

- Bullet points for specific changes
- Another change"
  1. Pushing changes:
git pull origin main  # Get latest changes
git push origin main  # Push your changes

Development Server

To run the server in development mode with automatic reloading:

npm run watch

To inspect the server's capabilities:

npm run inspector

License

Private - IntelligenceBank © 2024

More from Developer Tools