From d324887a57aac90c915c12b6b0d1712edd6f4139 Mon Sep 17 00:00:00 2001 From: Erik Darling <2136037+erikdarlingdata@users.noreply.github.com> Date: Thu, 5 Mar 2026 09:47:42 -0500 Subject: [PATCH] Fix MCP transport type from streamable-http to http Claude Code CLI uses "http" not "streamable-http" for the transport flag. Co-Authored-By: Claude Opus 4.6 --- README.md | 2 +- src/PlanViewer.App/Mcp/McpInstructions.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index adeb39f..14391e5 100644 --- a/README.md +++ b/README.md @@ -320,7 +320,7 @@ The desktop GUI includes an embedded [Model Context Protocol](https://modelconte 2. Register with Claude Code: ``` -claude mcp add --transport streamable-http --scope user performance-studio http://localhost:5152/ +claude mcp add --transport http --scope user performance-studio http://localhost:5152/ ``` 3. Open a new Claude Code session and ask questions like: diff --git a/src/PlanViewer.App/Mcp/McpInstructions.cs b/src/PlanViewer.App/Mcp/McpInstructions.cs index ccacecd..16bbe34 100644 --- a/src/PlanViewer.App/Mcp/McpInstructions.cs +++ b/src/PlanViewer.App/Mcp/McpInstructions.cs @@ -105,7 +105,7 @@ 4. Use plan analysis tools above with the returned session_ids { "mcpServers": { "performance-studio": { - "type": "streamable-http", + "type": "http", "url": "http://localhost:5152/" } }