Skip to content

Commit

Permalink
Remove example paths now that SDK pathing works better
Browse files Browse the repository at this point in the history
  • Loading branch information
jspahrsummers committed Nov 11, 2024
1 parent 01fb48e commit de9ee39
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,16 +77,10 @@ const App = () => {
useState<CompatibilityCallToolResult | null>(null);
const [error, setError] = useState<string | null>(null);
const [command, setCommand] = useState<string>(() => {
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<string>(() => {
return (
localStorage.getItem("lastArgs") ||
"/Users/ashwin/code/mcp/example-servers/build/everything/stdio.js"
);
return localStorage.getItem("lastArgs") || "";
});
const [url, setUrl] = useState<string>("http://localhost:3001/sse");
const [transportType, setTransportType] = useState<"stdio" | "sse">("stdio");
Expand Down

0 comments on commit de9ee39

Please sign in to comment.