File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff 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" ) ;
You can’t perform that action at this time.
0 commit comments