feat: add url_prefix support to FastMCP SSE #278
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Previously the paths for SSE were hardcoded to /sse and /messages this made it hard to run behind an API gateway. Requests to the /sse endpoint, even if proxied properly, would return /messages for the location of the /messages endpoint even if it should've been /api/v1/my_mcp_server/messages. This brings in a new parameter to FastMCP, url_prefix, that allows you set a prefix of something such as /api/v1/my_mcp_server and have the serve function properly. This can be passed either on the FastMCP constructor or with the environment variable FASTMCP_URL_PREFIX.
DCO-1.1 Signed-off-by: Patrick Wagstrom [email protected]
Motivation and Context
There are situations when you may want something like an API Gateway to front multiple MCP servers, in this case they can't all serve the endpoints of
/sse
and/messages
, but unfortunately, those were hardcoded. An because of the way that the connection is kept open on/sse
, you can't always use body rewrite features inside of the API gateway to change the URLs.How Has This Been Tested?
I created, with the assistance of Claude,
tests/server/fastmcp/test_url_prefix.py
which covers most of the tests. I've also tested this locally with my API gateway and observed that it works.Breaking Changes
None observed
Types of changes
Checklist
On the last one, if the other environment variables like
FASTMCP_HOST
andFASTMCP_PORT
had a spot in the documentation, I'd addFASTMCP_URL_PREFIX
next to them, but I didn't see where that might be.Additional context
Without this, it still is possible to run multiple MCP servers behind an API gateway, but you need to run them in
stdio
mode and use Supergateway with the--ssePath
and--messagePath
flags set.