Skip to content

Commit ec24f7b

Browse files
authored
Merge pull request #425 from modelcontextprotocol/pcarleton/naming
rework naming on config copy
2 parents b07f738 + c2610b6 commit ec24f7b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

client/src/components/Sidebar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,14 +127,14 @@ const Sidebar = ({
127127
return {
128128
type: "sse",
129129
url: sseUrl,
130-
note: "For SSE connections, add this URL directly in Client",
130+
note: "For SSE connections, add this URL directly in your MCP Client",
131131
};
132132
}
133133
if (transportType === "streamable-http") {
134134
return {
135135
type: "streamable-http",
136136
url: sseUrl,
137-
note: "For Streamable HTTP connections, add this URL directly in Client",
137+
note: "For Streamable HTTP connections, add this URL directly in your MCP Client",
138138
};
139139
}
140140
return {};
@@ -172,7 +172,7 @@ const Sidebar = ({
172172
description:
173173
transportType === "stdio"
174174
? "Server configuration has been copied to clipboard. Add this to your mcp.json inside the 'mcpServers' object with your preferred server name."
175-
: "SSE URL has been copied. Use this URL in Cursor directly.",
175+
: "SSE URL has been copied. Use this URL directly in your MCP Client.",
176176
});
177177

178178
setTimeout(() => {

client/src/components/__tests__/Sidebar.test.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ describe("Sidebar Environment Variables", () => {
755755
{
756756
type: "sse",
757757
url: sseUrl,
758-
note: "For SSE connections, add this URL directly in Client",
758+
note: "For SSE connections, add this URL directly in your MCP Client",
759759
},
760760
null,
761761
4,
@@ -780,7 +780,7 @@ describe("Sidebar Environment Variables", () => {
780780
"default-server": {
781781
type: "sse",
782782
url: sseUrl,
783-
note: "For SSE connections, add this URL directly in Client",
783+
note: "For SSE connections, add this URL directly in your MCP Client",
784784
},
785785
},
786786
},
@@ -805,7 +805,7 @@ describe("Sidebar Environment Variables", () => {
805805
{
806806
type: "streamable-http",
807807
url: sseUrl,
808-
note: "For Streamable HTTP connections, add this URL directly in Client",
808+
note: "For Streamable HTTP connections, add this URL directly in your MCP Client",
809809
},
810810
null,
811811
4,
@@ -830,7 +830,7 @@ describe("Sidebar Environment Variables", () => {
830830
"default-server": {
831831
type: "streamable-http",
832832
url: sseUrl,
833-
note: "For Streamable HTTP connections, add this URL directly in Client",
833+
note: "For Streamable HTTP connections, add this URL directly in your MCP Client",
834834
},
835835
},
836836
},

0 commit comments

Comments
 (0)