rest_to_postman_collection
Convert REST API configurations into Postman collections, synchronizing endpoints and merging updates intelligently while preserving custom modifications in Postman.
Instructions
Creates or updates a Postman collection with the provided collection configuration. This tool helps synchronize your REST API endpoints with Postman. When updating an existing collection, it intelligently merges the new endpoints with existing ones, avoiding duplicates while preserving custom modifications made in Postman. Here's an example:
{
"info": {
"name": "REST Collection",
"description": "REST Collection",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"auth": {
"type": "bearer",
"bearer": [
{
"key": "Authorization",
"value": "Bearer {{API_TOKEN}}",
"type": "string"
}
]
},
"item": [
{
"name": "Get Users",
"request": {
"method": "GET",
"url": {
"raw": "{{API_URL}}/users",
"protocol": "https",
"host": ["api", "example", "com"],
"path": ["users"]
}
}
},
{
"name": "Create User",
"request": {
"method": "POST",
"url": {
"raw": "{{API_URL}}/users"
},
"body": {
"mode": "raw",
"raw": "{"name":"John Doe","email":"john.doe@example.com"}"
}
}
}
]
}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionRequest | Yes | The Postman collection configuration containing info, items, and other collection details |
Input Schema (JSON Schema)
You must be authenticated.
Other Tools from REST-to-Postman MCP
Related Tools
- @delano/postman-mcp-server
- @runninghare/rest-to-postman
- @delano/postman-mcp-server
- @delano/postman-mcp-server
- @delano/postman-mcp-server