Skip to content

Commit de9ee39

Browse files
committed
Remove example paths now that SDK pathing works better
1 parent 01fb48e commit de9ee39

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

client/src/App.tsx

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -77,16 +77,10 @@ const App = () => {
7777
useState<CompatibilityCallToolResult | null>(null);
7878
const [error, setError] = useState<string | null>(null);
7979
const [command, setCommand] = useState<string>(() => {
80-
return (
81-
localStorage.getItem("lastCommand") ||
82-
"/Users/ashwin/.nvm/versions/node/v18.20.4/bin/node"
83-
);
80+
return localStorage.getItem("lastCommand") || "mcp-server-everything";
8481
});
8582
const [args, setArgs] = useState<string>(() => {
86-
return (
87-
localStorage.getItem("lastArgs") ||
88-
"/Users/ashwin/code/mcp/example-servers/build/everything/stdio.js"
89-
);
83+
return localStorage.getItem("lastArgs") || "";
9084
});
9185
const [url, setUrl] = useState<string>("http://localhost:3001/sse");
9286
const [transportType, setTransportType] = useState<"stdio" | "sse">("stdio");

0 commit comments

Comments
 (0)