()
| 81 | }; |
| 82 | |
| 83 | export const getInitialCommand = (): string => { |
| 84 | const param = getSearchParam("serverCommand"); |
| 85 | if (param) return param; |
| 86 | return localStorage.getItem("lastCommand") || "mcp-server-everything"; |
| 87 | }; |
| 88 | |
| 89 | export const getInitialArgs = (): string => { |
| 90 | const param = getSearchParam("serverArgs"); |
nothing calls this directly
no test coverage detected