Compare commits
1 Commits
devin/1737
...
davidsp/em
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0b3f967867 |
@@ -69,10 +69,7 @@ const App = () => {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
const [args, setArgs] = useState<string>(() => {
|
const [args, setArgs] = useState<string>(() => {
|
||||||
return (
|
return localStorage.getItem("lastArgs") || "";
|
||||||
localStorage.getItem("lastArgs") ||
|
|
||||||
"/Users/ashwin/code/mcp/example-servers/build/everything/stdio.js"
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
const [url, setUrl] = useState<string>("http://localhost:3001/sse");
|
const [url, setUrl] = useState<string>("http://localhost:3001/sse");
|
||||||
const [transportType, setTransportType] = useState<"stdio" | "sse">("stdio");
|
const [transportType, setTransportType] = useState<"stdio" | "sse">("stdio");
|
||||||
|
|||||||
Reference in New Issue
Block a user