Overview
Upload a Postman collection and BoostGPT automatically generates a working MCP server. Your custom integration is live in under 5 minutes.Quick Start
1
Export from Postman
In Postman:
- Select your collection
- Click Export
- Choose Collection v2.1
- Save the JSON file
2
Create Server
- Go to Dashboard -> MCP Servers
- Click Create Server
- Select Upload Postman Collection
3
Upload File
Drop your Postman collection JSON file
4
Server Generated
BoostGPT generates your MCP server:
5
Connect to Agent
- Agent -> Tools tab -> Add Tool -> Add New
- Enter your MCP URL
- Ready to use!
Postman Collection Format
Your collection should be in Postman Collection v2.1 format:Auto-Generated Tools
Each Postman request becomes an agent tool:| Postman Request | Generated Tool | Description |
|---|---|---|
| GET /users | get_users | Fetches user list |
| POST /users | create_user | Creates new user |
| GET /users/:id | get_user_by_id | Gets single user |
| PUT /users/:id | update_user | Updates user info |
| DELETE /users/:id | delete_user | Deletes user |
Example: E-commerce API
Postman Collection:Authentication
Add authentication to your Postman collection:API Key
Bearer Token
Variables
Use Postman variables for dynamic values:Testing
Test your MCP server:Organizing Collections
Use folders in Postman for better organization:users_list_users, orders_list_orders
Common Issues
Invalid collection format
Invalid collection format
Export as Collection v2.1 from Postman. Older formats aren’t supported.
Authentication not working
Authentication not working
Add auth to your collection or configure credentials in MCP server settings after upload.
Request failing
Request failing
Test requests in Postman first to ensure they work. Check URLs and parameters.
Variables not resolving
Variables not resolving
Set variable values in Dashboard -> MCP Servers -> Your Server -> Settings
Best Practices
- Name requests clearly - “Get User” becomes
get_usertool - Add descriptions - Help AI understand when to use each tool
- Include examples - Add example requests in Postman
- Test first - Verify requests work in Postman before uploading
- Use folders - Organize related endpoints together
- Document parameters - Add parameter descriptions in Postman
Example Collections
Download starter templates:- REST API Template - Basic CRUD operations
- E-commerce Template - Product and order management
- CRM Template - Contact and deal management