A tool for automatically converting mitmproxy captures to OpenAPI 3.0 specifications.
Run the tool with your traffic file and API base URL. This generates an x-path-templates section with all discovered paths prefixed by ignore:.
Remove ignore: from paths you want to include:
x-path-templates:
- /users/{id} # ✓ Include
- ignore:/internal # ✗ Skip
Run the tool again with the same inputs but specify your edited file as the Existing OpenAPI Schema. It will generate full endpoint descriptions for paths without ignore:.
Notes: