diff --git a/docs/deployment/http.mdx b/docs/deployment/http.mdx index a5d532555..b2964f350 100644 --- a/docs/deployment/http.mdx +++ b/docs/deployment/http.mdx @@ -510,6 +510,7 @@ When deploying to production, you'll want to optimize your server for performanc # Run with basic configuration uvicorn app:app --host 0.0.0.0 --port 8000 +# Ensure stateless HTTP mode is enabled (stateless_http=True) # Run with multiple workers for production uvicorn app:app --host 0.0.0.0 --port 8000 --workers 4 ``` @@ -601,4 +602,4 @@ This guide has shown you how to create an HTTP-accessible MCP server, but you'll - **Edge platforms** (Cloudflare Workers) - **Kubernetes clusters** (self-managed or managed) -The key requirements are Python 3.10+ support and the ability to expose an HTTP port. Most providers will require you to package your server (requirements.txt, Dockerfile, etc.) according to their deployment format. For managed, zero-configuration deployment, see [FastMCP Cloud](/deployment/fastmcp-cloud). \ No newline at end of file +The key requirements are Python 3.10+ support and the ability to expose an HTTP port. Most providers will require you to package your server (requirements.txt, Dockerfile, etc.) according to their deployment format. For managed, zero-configuration deployment, see [FastMCP Cloud](/deployment/fastmcp-cloud).