What key capability does the streamable HTTP transport enable for MCP servers?	It allows the server to be remotely hosted, rather than requiring the client and server to run on the same machine.
What is the primary challenge for a server using traditional HTTP when communicating with a client?	It is difficult for the server to initiate a request down to the client because the server often does not know the client's address.
Name three types of message notifications that are particularly difficult for the server to send to the client over HTTP.	Progress notifications, logging notifications, and sampling requests.
What are the two specific settings that must be monitored and potentially enabled for optimal MCP server functionality using this transport?	Stateless HTTP and JSON response.
How does the streamable HTTP transport improve upon the standard IO transport?	It removes the requirement that the client and server must be physically located on the same machine.
What is the main warning regarding the use of the streamable HTTP transport?	Specific settings must be applied, as they can limit the functionality or even break the expected behavior of the MCP server.
