Model Context Protocol (MCP) Python SDK does not enable DNS rebinding protection by default
High severity
GitHub Reviewed
Published
Dec 2, 2025
in
modelcontextprotocol/python-sdk
•
Updated Feb 17, 2026
Description
Published to the GitHub Advisory Database
Dec 2, 2025
Reviewed
Dec 2, 2025
Published by the National Vulnerability Database
Dec 2, 2025
Last updated
Feb 17, 2026
Description
The Model Context Protocol (MCP) Python SDK does not enable DNS rebinding protection by default for HTTP-based servers. When an HTTP-based MCP server is run on localhost without authentication using
FastMCPwith streamable HTTP or SSE transport, and has not configuredTransportSecuritySettings, a malicious website could exploit DNS rebinding to bypass same-origin policy restrictions and send requests to the local MCP server. This could allow an attacker to invoke tools or access resources exposed by the MCP server on behalf of the user in those limited circumstances.Note that running HTTP-based MCP servers locally without authentication is not recommended per MCP security best practices. This issue does not affect servers using stdio transport.
Servers created via
FastMCP()now have DNS rebinding protection enabled by default when thehostparameter is127.0.0.1orlocalhost. Users are advised to update to version1.23.0to receive this automatic protection. Users with custom low-level server configurations usingStreamableHTTPSessionManagerorSseServerTransportdirectly should explicitly configureTransportSecuritySettingswhen running an unauthenticated server on localhost.References