From de9ee3956ed5832eb660f934a748ea0f9f151acf Mon Sep 17 00:00:00 2001 From: Justin Spahr-Summers Date: Mon, 11 Nov 2024 17:45:07 +0000 Subject: [PATCH] Remove example paths now that SDK pathing works better --- client/src/App.tsx | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/client/src/App.tsx b/client/src/App.tsx index e8c7e08..2cd6554 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -77,16 +77,10 @@ const App = () => { useState(null); const [error, setError] = useState(null); const [command, setCommand] = useState(() => { - return ( - localStorage.getItem("lastCommand") || - "/Users/ashwin/.nvm/versions/node/v18.20.4/bin/node" - ); + return localStorage.getItem("lastCommand") || "mcp-server-everything"; }); const [args, setArgs] = useState(() => { - return ( - localStorage.getItem("lastArgs") || - "/Users/ashwin/code/mcp/example-servers/build/everything/stdio.js" - ); + return localStorage.getItem("lastArgs") || ""; }); const [url, setUrl] = useState("http://localhost:3001/sse"); const [transportType, setTransportType] = useState<"stdio" | "sse">("stdio");