Transport
The Model Context Protocol (MCP) specification defines three standard transport mechanisms ↗ for communication between clients and servers:
- stdio, communication over standard in and standard out — designed for local MCP connections.
- Server-Sent Events (SSE) — Currently supported by most remote MCP clients, but is expected to be replaced by Streamable HTTP over time. It requires two endpoints: one for sending requests, another for receiving streamed responses.
- Streamable HTTP — New transport method introduced ↗ in March 2025. It simplifies the communication by using a single HTTP endpoint for bidirectional messaging. It is currently gaining adoption among remote MCP clients, but it is expected to become the standard transport in the future.
MCP servers built with the Agents SDK can support both remote transport methods (SSE and Streamable HTTP), with the McpAgent
class ↗ automatically handling the transport configuration.
If you're building a new MCP server or upgrading an existing one on Cloudflare, we recommend supporting both remote transport methods (SSE and Streamable HTTP) concurrently to ensure compatibility with all MCP clients.
You can use the "Deploy to Cloudflare" button to create a remote MCP server that automatically supports both SSE and Streamable HTTP transport methods.
If you're manually configuring your MCP server, here's how to use the McpAgent
class to handle both transport methods:
export default { fetch(request: Request, env: Env, ctx: ExecutionContext) { const { pathname } = new URL(request.url);
if (pathname.startsWith('/sse')) { return MyMcpAgent.serveSSE('/sse').fetch(request, env, ctx); }
if (pathname.startsWith('/mcp')) { return MyMcpAgent.serve('/mcp').fetch(request, env, ctx); } },};
export default { fetch(request: Request, env: Env, ctx: ExecutionContext): Response | Promise<Response> { const { pathname } = new URL(request.url);
if (pathname.startsWith('/sse')) { return MyMcpAgent.serveSSE('/sse').fetch(request, env, ctx); }
if (pathname.startsWith('/mcp')) { return MyMcpAgent.serve('/mcp').fetch(request, env, ctx); }
// Handle case where no path matches return new Response('Not found', { status: 404 }); },};
const app = new Hono()
app.mount('/sse', MyMCP.serveSSE('/sse').fetch, { replaceRequest: false })app.mount('/mcp', MyMCP.serve('/mcp').fetch, { replaceRequest: false )
export default app
If your MCP server implements authentication & authorization using the Workers OAuth Provider ↗ Library, then you can configure it to support both transport methods using the apiHandlers
property.
export default new OAuthProvider({ apiHandlers: { '/sse': MyMCP.serveSSE('/sse'), '/mcp': MyMCP.serve('/mcp'), }, // ... other OAuth configuration})
If you've already built a remote MCP server using the Cloudflare Agents SDK, make the following changes to support the new Streamable HTTP transport while maintaining compatibility with remote MCP clients using SSE:
- Use
MyMcpAgent.serveSSE('/sse')
for the existing SSE transport. Previously, this would have beenMyMcpAgent.mount('/sse')
, which has been kept as an alias. - Add a new path with
MyMcpAgent.serve('/mcp')
to support the new Streamable HTTP transport.
If you have an MCP server with authentication/authorization using the Workers OAuth Provider, update the configuration to use the apiHandlers
property, which replaces apiRoute
and apiHandler
.
With these few changes, your MCP server will support both transport methods, making it compatible with both existing and new clients.
While most MCP clients have not yet adopted the new Streamable HTTP transport, you can start testing it today using mcp-remote
↗, an adapter that lets MCP clients that otherwise only support local connections work with remote MCP servers.
Follow this guide for instructions on how to connect to your remote MCP server from Claude Desktop, Cursor, Windsurf, and other local MCP clients, using the mcp-remote
local proxy ↗.
Was this helpful?
- Resources
- API
- New to Cloudflare?
- Products
- Sponsorships
- Open Source
- Support
- Help Center
- System Status
- Compliance
- GDPR
- Company
- cloudflare.com
- Our team
- Careers
- 2025 Cloudflare, Inc.
- Privacy Policy
- Terms of Use
- Report Security Issues
- Trademark
-