- Attach the OpenAPI adapter to an app; it fetches the spec and exposes operations as tools.
- Input schema is derived from operation parameters/body via JSON Schema → Zod conversion.
- Add the adapter to your app with a URL to the OpenAPI JSON.
- Optionally configure include/exclude (future), naming, and dereference behavior.
- Adapter-generated tools inherit plugins and providers defined on the app.
- At runtime, each generated tool validates inputs using derived schemas.
- See the expenses example for a working setup.