oas2mcp.loaders =============== .. py:module:: oas2mcp.loaders .. autoapi-nested-parse:: Loader helpers for ``oas2mcp``. Purpose: Expose functions for reading OpenAPI specifications from URLs, files, and raw text. Design: - Keep loading side effects isolated to this package. - Return plain dictionaries for the initial ingestion layer. - Preserve compatibility aliases while the rest of the package is being migrated away from LangChain's ``OpenAPISpec`` object model. .. attribute:: __all__ Curated public exports for loader helpers. .. rubric:: Examples .. code-block:: python from oas2mcp.loaders import load_openapi_spec_dict_from_file spec_dict = load_openapi_spec_dict_from_file("openapi.json") Submodules ---------- .. toctree:: :maxdepth: 1 /autoapi/oas2mcp/loaders/openapi/index