Skip to content

Commit 2f35f80

Browse files
committed
fix: use "http" as the type value for client config
https://claude.ai/code/session_01V5tgbLyeWrPW5zZ1toRoPZ
1 parent 0d979e2 commit 2f35f80

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Add a server in McpMux and every client has it instantly. No files to edit.
4949
{
5050
"mcpServers": {
5151
"mcpmux": {
52-
"type": "streamable-http",
52+
"type": "http",
5353
"url": "http://localhost:9315/mcp"
5454
}
5555
}

apps/desktop/src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ function DashboardView() {
413413
<div className="relative">
414414
<pre className="bg-slate-900 text-slate-100 p-4 rounded-lg text-sm overflow-x-auto font-mono">
415415
{`"mcpmux": {
416-
"type": "streamable-http",
416+
"type": "http",
417417
"url": "${gatewayStatus.url || 'http://localhost:3100'}/mcp"
418418
}`}
419419
</pre>
@@ -422,7 +422,7 @@ function DashboardView() {
422422
size="sm"
423423
className="absolute top-2 right-2"
424424
onClick={async () => {
425-
const config = `"mcpmux": {\n "type": "streamable-http",\n "url": "${gatewayStatus.url || 'http://localhost:3100'}/mcp"\n}`;
425+
const config = `"mcpmux": {\n "type": "http",\n "url": "${gatewayStatus.url || 'http://localhost:3100'}/mcp"\n}`;
426426
await navigator.clipboard.writeText(config);
427427
setExportSuccess('Config copied to clipboard!');
428428
setTimeout(() => setExportSuccess(null), 2000);

0 commit comments

Comments
 (0)