Skip to content

Commit fe3d6d8

Browse files
julienldclaude
andauthored
fix(docs): add missing --transport flag for mcp-proxy in add-on docs (#94)
The add-on uses streamable-http transport, but the Claude Desktop configuration example was missing the --transport streamablehttp flag. Since mcp-proxy defaults to SSE, users were getting 400 Bad Request errors. Fixes #93 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <noreply@anthropic.com>
1 parent f865529 commit fe3d6d8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

homeassistant-addon/DOCS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Then add to your Claude Desktop configuration file:
6969
"mcpServers": {
7070
"home-assistant": {
7171
"command": "mcp-proxy",
72-
"args": ["http://192.168.1.100:9583/private_zctpwlX7ZkIAr7oqdfLPxw"]
72+
"args": ["--transport", "streamablehttp", "http://192.168.1.100:9583/private_zctpwlX7ZkIAr7oqdfLPxw"]
7373
}
7474
}
7575
}
@@ -79,7 +79,7 @@ Replace the URL in `args` with the one from your add-on logs.
7979

8080
**Restart Claude Desktop** after saving the configuration.
8181

82-
**How it works:** mcp-proxy converts the HTTP/SSE endpoint to stdio that Claude Desktop can use.
82+
**How it works:** mcp-proxy converts the HTTP endpoint to stdio that Claude Desktop can use.
8383

8484
</details>
8585

0 commit comments

Comments
 (0)