fastmcp.utilities.tests
Functions
temporary_settings
**kwargs: The settings to override, including nested settings.
run_server_in_process
server_fn: The function that runs a FastMCP server. FastMCP servers are not pickleable, so we need a function that creates and runs one.*args: Arguments to pass to the server function.provide_host_and_port: Whether to provide the host and port to the server function as kwargs.host: Host to bind the server to (default: “127.0.0.1”).port: Port to bind the server to (default: find available port).**kwargs: Keyword arguments to pass to the server function.
- The server URL.
run_server_async
asgi_client or asgi_server, which
exercise the same HTTP stack without binding a port.
Args:
server: FastMCP server instanceport: Port to bind to (default: find available port)transport: Transport type (“http”, “streamable-http”, or “sse”)path: URL path for the server (default: “/mcp”)host: Host to bind to (default: “127.0.0.1”)
asgi_server
http_app() and its lifespan is started, then every
request is dispatched directly into the app on the current event loop. That skips
port binding, uvicorn startup and connection setup entirely, while still exercising
the full HTTP stack: middleware, authentication, session management and SSE
streaming all run exactly as they do in production.
Use this as a fixture when several tests share one server but each needs its own
client. For a single test, asgi_client hands you a connected client in one step.
Args:
server: FastMCP server instance.transport: Transport type (“http”, “streamable-http”, or “sse”).path: URL path for the server (defaults to “/mcp”, or “/sse” for SSE).**http_app_kwargs: Additional arguments forwarded toserver.http_app().
asgi_client
Client.
This is the shortest path to testing a server over a real HTTP stack. The server’s
Starlette app is built and started, and requests are dispatched straight into it on
the current event loop — no port, no uvicorn, no subprocess — but middleware,
authentication, session management and SSE streaming all behave as in production.
Reach for asgi_server instead when a fixture must serve several tests that each
build their own client, or when a test needs raw HTTP access to the app.
Args:
server: FastMCP server instance.transport: Transport type (“http”, “streamable-http”, or “sse”).path: URL path for the server (defaults to “/mcp”, or “/sse” for SSE).headers: HTTP headers to send with every request.auth: Client authentication, as accepted by the HTTP transports.**client_kwargs: Additional arguments forwarded toClient.
Classes
ASGIServer
A FastMCP server’s real HTTP app, reachable in-process with no sockets.
Yielded by asgi_server. The url looks like an ordinary server URL and the app
behind it is the genuine article — auth middleware, session manager, SSE framing and
redirects all run — but every request is dispatched straight into the ASGI
application on the current event loop.
Because nothing is listening on the network, a plain httpx2.AsyncClient() cannot
reach this server. Use client() for a FastMCP client, http_client() for raw HTTP
assertions, and transport() when you need to build the client transport yourself.
Methods:
http_client
httpx2.AsyncClient bound to the in-process app, for raw HTTP assertions.
Relative URLs resolve against the server’s base URL, and absolute URLs on the
same origin work too, so client.get(f"{server.url}/health") reads the same as
it would against a real server.
The signature matches McpHttpClientFactory, so this method can also be handed
to anything that takes an httpx_client_factory.
transport
headers,
auth, …); httpx_client_factory is supplied automatically.
client
Client pointed at the in-process app.
headers and auth configure the underlying HTTP transport; every other
keyword argument is passed to Client (timeout, elicitation_handler, …).
Use it as a context manager, exactly like any other client.
Args:
headers: HTTP headers to send with every request.auth: Client authentication, as accepted by the HTTP transports.**client_kwargs: Additional arguments forwarded toClient.

