mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-09 23:29:10 +02:00
Co-authored-by: marvin-context-protocol[bot] <225465937+marvin-context-protocol[bot]@users.noreply.github.com>
27 lines
655 B
Text
27 lines
655 B
Text
---
|
|
title: __init__
|
|
sidebarTitle: __init__
|
|
---
|
|
|
|
# `fastmcp.server.openapi`
|
|
|
|
|
|
OpenAPI server implementation for FastMCP.
|
|
|
|
.. deprecated::
|
|
This module is deprecated. Import from fastmcp.server.providers.openapi instead.
|
|
|
|
The recommended approach is to use OpenAPIProvider with FastMCP:
|
|
|
|
from fastmcp import FastMCP
|
|
from fastmcp.server.providers.openapi import OpenAPIProvider
|
|
import httpx
|
|
|
|
client = httpx.AsyncClient(base_url="https://api.example.com")
|
|
provider = OpenAPIProvider(openapi_spec=spec, client=client)
|
|
|
|
mcp = FastMCP("My API Server")
|
|
mcp.add_provider(provider)
|
|
|
|
FastMCPOpenAPI is still available but deprecated.
|
|
|