Skip to main content

fastmcp.server.providers.proxy

ProxyProvider for proxying to remote MCP servers. This module provides the ProxyProvider class that proxies components from a remote MCP server via a client factory. It also provides proxy component classes that forward execution to remote servers.

Functions

default_proxy_roots_handler

Forward list roots request from remote server to proxy’s connected clients.

default_proxy_sampling_handler

Forward sampling request from remote server to proxy’s connected clients.

default_proxy_elicitation_handler

Forward elicitation request from remote server to proxy’s connected clients.

default_proxy_log_handler

Forward log notification from remote server to proxy’s connected clients.

default_proxy_progress_handler

Forward progress notification from remote server to proxy’s connected clients.

Classes

ProxyTool

A Tool that represents and executes a tool on a remote server. Methods:

model_copy

Override to preserve _backend_name when name changes.

from_mcp_tool

Factory method to create a ProxyTool from a raw MCP tool schema.

run

Executes the tool by making a call through the client.

get_span_attributes

ProxyResource

A Resource that represents and reads a resource from a remote server. Methods:

model_copy

Override to preserve _backend_uri when uri changes.

from_mcp_resource

Factory method to create a ProxyResource from a raw MCP resource schema.

read

Read the resource content from the remote server.

get_span_attributes

ProxyTemplate

A ResourceTemplate that represents and creates resources from a remote server template. Methods:

model_copy

Override to preserve _backend_uri_template when uri_template changes.

from_mcp_template

Factory method to create a ProxyTemplate from a raw MCP template schema.

create_resource

Create a resource from the template by calling the remote server.

get_span_attributes

ProxyPrompt

A Prompt that represents and renders a prompt from a remote server. Methods:

model_copy

Override to preserve _backend_name when name changes.

from_mcp_prompt

Factory method to create a ProxyPrompt from a raw MCP prompt schema.

render

Render the prompt by making a call through the client.

get_span_attributes

ProxyProvider

Provider that proxies to a remote MCP server via a client factory. This provider fetches components from a remote server and returns Proxy* component instances that forward execution to the remote server. All components returned by this provider have task_config.mode=“forbidden” because tasks cannot be executed through a proxy. Methods:

get_tasks

Return empty list since proxy components don’t support tasks. Override the base implementation to avoid calling list_tools() during server lifespan initialization, which would open the client before any context is set. All Proxy* components have task_config.mode=“forbidden”.

FastMCPProxy

A FastMCP server that acts as a proxy to a remote MCP-compliant server. This is a convenience wrapper that creates a FastMCP server with a ProxyProvider. For more control, use FastMCP with add_provider(ProxyProvider(…)).

ProxyClient

A proxy client that forwards advanced interactions between a remote MCP server and the proxy’s connected clients. Supports forwarding roots, sampling, elicitation, logging, and progress.

StatefulProxyClient

A proxy client that provides a stateful client factory for the proxy server. The stateful proxy client bound its copy to the server session. And it will be disconnected when the session is exited. This is useful to proxy a stateful mcp server such as the Playwright MCP server. Note that it is essential to ensure that the proxy server itself is also stateful. Methods:

clear

Clear all cached clients and force disconnect them.

new_stateful

Create a new stateful proxy client instance with the same configuration. Use this method as the client factory for stateful proxy server.