Rename HTTP transport type to 'Streamable HTTP (Recommended)' in MCP pages (#21000)

- Updated create_mcp_server.tsx to show 'Streamable HTTP (Recommended)' label
- Updated mcp_server_edit.tsx to show 'Streamable HTTP (Recommended)' label
- Both Add New MCP Server and Edit MCP Server pages now display the updated label

Co-authored-by: Cursor Agent <cursoragent@cursor.com>
Co-authored-by: Ishaan Jaff <ishaan-jaff@users.noreply.github.com>
This commit is contained in:
Ishaan Jaff
2026-02-11 15:30:38 -08:00
committed by GitHub
co-authored by Cursor Agent Ishaan Jaff
parent 5fa5657476
commit d5e8d957b2
2 changed files with 2 additions and 2 deletions
@@ -501,7 +501,7 @@ const CreateMCPServer: React.FC<CreateMCPServerProps> = ({
onChange={handleTransportChange}
value={transportType}
>
<Select.Option value="http">HTTP</Select.Option>
<Select.Option value="http">Streamable HTTP (Recommended)</Select.Option>
<Select.Option value="sse">Server-Sent Events (SSE)</Select.Option>
<Select.Option value="stdio">Standard Input/Output (stdio)</Select.Option>
</Select>
@@ -545,7 +545,7 @@ const MCPServerEdit: React.FC<MCPServerEditProps> = ({
<Form.Item label="Transport Type" name="transport" rules={[{ required: true }]}>
<Select onChange={handleTransportChange}>
<Select.Option value="sse">Server-Sent Events (SSE)</Select.Option>
<Select.Option value="http">HTTP</Select.Option>
<Select.Option value="http">Streamable HTTP (Recommended)</Select.Option>
<Select.Option value="stdio">Standard Input/Output (stdio)</Select.Option>
</Select>
</Form.Item>