This web application allows you to convert Postman collection files to MCP (Model Context Protocol) API configuration format and edit existing MCP configurations.
- Upload and automatically convert Postman collection files (.json)
- Edit API configuration (API ID, Base URL, Authentication settings)
- View, edit, and delete endpoint list
- Edit endpoint properties (operation ID, description, HTTP method, path)
- Delete parameter feature
- Download JSON output
- Create new API configurations from scratch
- Load existing API configurations from server
- Upload API configuration files from your local computer
- Import Postman collections and convert them to MCP format
- Add, edit, and delete endpoints and parameters
- Configure authentication settings (Bearer Token, API Key, etc.)
- Save configurations to server
- Download configurations as JSON files
- Open the
index.html
file in a web browser - Choose one of the following options:
- Load Existing File: Select from available configuration files on the server
- Create New Template: Start a new API configuration from scratch
- Import from Postman: Convert a Postman collection to MCP format
- Select a file from the list to edit
- Or upload a configuration file from your local computer
- Fill in the basic API information (ID, Base URL, Handler Type)
- Configure authentication if needed
- Add endpoints and parameters
- Save or download your configuration
- Use the "Select File" button to upload a Postman collection file (.json)
- Click "Import" to convert it to MCP format
- Modify the configuration as needed
- Save or download the configuration
- When you upload a Postman collection file, it is parsed as JSON
- An MCP configuration is created using the collection information:
- API ID: Created from the collection name
- Base URL: Retrieved from collection variables
- Authentication: Retrieved from collection authentication settings
- Endpoints: Created from requests in the collection
- You can edit the generated configuration and save or download it as JSON
This application runs entirely on the client-side, requiring no server or backend service. It is built using HTML, CSS, and JavaScript.
To convert a Postman collection to an MCP API configuration:
- Export the Postman collection (in .json format)
- Upload this file in the converter page
- Make necessary edits
- Save or download the generated JSON configuration
- Use the downloaded file with your MCP server
To edit an existing MCP configuration:
- Select the file from the server list or upload from your computer
- Make your changes to the configuration
- Save the changes back to the server or download as a new file
- Long operation IDs are automatically shortened
- Body parameters are automatically detected
- Bodies in JSON:API format are specially marked
- All API configurations are validated before saving
- The editor supports loading configurations directly from local files