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");