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 = () => {
77
77
useState < CompatibilityCallToolResult | null > ( null ) ;
78
78
const [ error , setError ] = useState < string | null > ( null ) ;
79
79
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" ;
84
81
} ) ;
85
82
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" ) || "" ;
90
84
} ) ;
91
85
const [ url , setUrl ] = useState < string > ( "http://localhost:3001/sse" ) ;
92
86
const [ transportType , setTransportType ] = useState < "stdio" | "sse" > ( "stdio" ) ;
You can’t perform that action at this time.
0 commit comments