Method not allowed
GET
/mcp
const url = 'https://example.com/api/v1/mcp';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/mcpThe MCP endpoint offers no server-initiated SSE stream; GET returns 405 (use POST).
Responses
Section titled “Responses”Method Not Allowed. Use POST.