Development
Wandelt eine OpenAPI-3.x- oder Swagger-2.0-Spec (JSON/YAML) in eine importierbare Postman Collection v2.1.0 mit Ordnern, Variablen, Auth und Beispielantworten.
Rufen Sie dieses Werkzeug aus Ihrem Code in drei Sprachen auf.
curl -X POST 'https://api.elysiatools.com/de/api/tools/openapi-to-postman-collection' \
-H 'Content-Type: application/json' \
-d '{"openapiSpec":"{\n \"openapi\": \"3.0.3\",\n \"info\": {\n \"title\": \"Petstore Lite API\",\n \"version\": \"1.0.0\",\n \"description\": \"A small sample pet store API.\"\n },\n \"servers\": [\n {\n \"url\": \"https://api.example.com/v1\"\n }\n ],\n \"paths\": {\n \"/pets\": {\n \"get\": {\n \"summary\": \"List pets\",\n \"operationId\": \"listPets\",\n \"parameters\": [\n {\n \"name\": \"limit\",\n \"in\": \"query\",\n \"description\": \"How many items to return\",\n \"schema\": {\n \"type\": \"integer\",\n \"minimum\": 1,\n \"maximum\": 100\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"description\": \"A list of pets\",\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"integer\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n }\n }\n }\n }\n }\n }\n },\n \"post\": {\n \"summary\": \"Create a pet\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Pet\"\n }\n }\n }\n },\n \"responses\": {\n \"201\": {\n \"description\": \"Created\"\n }\n }\n }\n },\n \"/pets/{petId}\": {\n \"get\": {\n \"summary\": \"Get one pet\",\n \"parameters\": [\n {\n \"name\": \"petId\",\n \"in\": \"path\",\n \"required\": true,\n \"description\": \"The pet id\",\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"description\": \"A single pet\",\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Pet\"\n }\n }\n }\n }\n }\n }\n }\n },\n \"components\": {\n \"schemas\": {\n \"Pet\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"integer\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"tag\": {\n \"type\": \"string\"\n }\n }\n }\n }\n }\n}","folderStrategy":"paths","includeExamples":true,"includeAuth":true}'Senden Sie eine POST-Anfrage mit Ihren Eingaben als JSON. Dateiparameter erfordern einen vorherigen Upload.
POST https://api.elysiatools.com/de/api/tools/openapi-to-postman-collection| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| openapiSpec | textarea | Ja | — |
| folderStrategy | select | Nein | — |
| includeExamples | checkbox | Nein | — |
| includeAuth | checkbox | Nein | — |
Dateiergebnis
{
"filePath": "/public/processing/randomid.ext",
"fileName": "output.ext",
"contentType": "application/octet-stream",
"size": 1024,
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Fügen Sie dieses Werkzeug Ihrem Model-Context-Protocol-Server hinzu, damit KI-Agenten es auflisten und aufrufen können.
Fügen Sie diesen Block Ihrer MCP-Client-Konfiguration hinzu:
{
"mcpServers": {
"elysiatools-openapi-to-postman-collection": {
"name": "openapi-to-postman-collection",
"description": "Wandelt eine OpenAPI-3.x- oder Swagger-2.0-Spec (JSON/YAML) in eine importierbare Postman Collection v2.1.0 mit Ordnern, Variablen, Auth und Beispielantworten.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=openapi-to-postman-collection",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Nach dem Verbinden mit dem SSE-Endpunkt listen Sie die bereitgestellten Werkzeuge auf:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Rufen Sie das Werkzeug über seine ID auf; Argumente werden aus seiner Parameterliste gebildet:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "openapi-to-postman-collection",
"arguments": {
"openapiSpec": "{\n \"openapi\": \"3.0.3\",\n \"info\": {\n \"title\": \"Petstore Lite API\",\n \"version\": \"1.0.0\",\n \"description\": \"A small sample pet store API.\"\n },\n \"servers\": [\n {\n \"url\": \"https://api.example.com/v1\"\n }\n ],\n \"paths\": {\n \"/pets\": {\n \"get\": {\n \"summary\": \"List pets\",\n \"operationId\": \"listPets\",\n \"parameters\": [\n {\n \"name\": \"limit\",\n \"in\": \"query\",\n \"description\": \"How many items to return\",\n \"schema\": {\n \"type\": \"integer\",\n \"minimum\": 1,\n \"maximum\": 100\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"description\": \"A list of pets\",\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"integer\"\n },\n \"name\": {\n \"type\": \"string\"\n }\n }\n }\n }\n }\n }\n }\n },\n \"post\": {\n \"summary\": \"Create a pet\",\n \"requestBody\": {\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Pet\"\n }\n }\n }\n },\n \"responses\": {\n \"201\": {\n \"description\": \"Created\"\n }\n }\n }\n },\n \"/pets/{petId}\": {\n \"get\": {\n \"summary\": \"Get one pet\",\n \"parameters\": [\n {\n \"name\": \"petId\",\n \"in\": \"path\",\n \"required\": true,\n \"description\": \"The pet id\",\n \"schema\": {\n \"type\": \"string\"\n }\n }\n ],\n \"responses\": {\n \"200\": {\n \"description\": \"A single pet\",\n \"content\": {\n \"application/json\": {\n \"schema\": {\n \"$ref\": \"#/components/schemas/Pet\"\n }\n }\n }\n }\n }\n }\n }\n },\n \"components\": {\n \"schemas\": {\n \"Pet\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\n \"type\": \"integer\"\n },\n \"name\": {\n \"type\": \"string\"\n },\n \"tag\": {\n \"type\": \"string\"\n }\n }\n }\n }\n }\n}",
"folderStrategy": "paths",
"includeExamples": true,
"includeAuth": true
}
}
}Fragen oder Probleme? Kontakt: [email protected]