File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { CatalogGrid } from './components/CatalogGrid';
5
5
import LoadingState from './components/LoadingState' ;
6
6
import { useCatalogAll } from './queries/useCatalog' ;
7
7
import { useConfig } from './queries/useConfig' ;
8
+ import { useMCPClient } from './queries/useMCPClient' ;
8
9
import { useRequiredImages } from './queries/useRequiredImages' ;
9
10
import { useSecrets } from './queries/useSecrets' ;
10
11
import { syncRegistryWithConfig } from './Registry' ;
@@ -21,6 +22,7 @@ export function App() {
21
22
const requiredImages = useRequiredImages ( client ) ;
22
23
const config = useConfig ( client ) ;
23
24
const secrets = useSecrets ( client ) ;
25
+ const mcpClient = useMCPClient ( client ) ;
24
26
25
27
// Create a memoized callback for syncing registry with config
26
28
const syncRegistry = useCallback ( async ( ) => {
@@ -39,6 +41,8 @@ export function App() {
39
41
40
42
catalogItems : catalogAll . catalogItems ,
41
43
registryItems : catalogAll . registryItems ,
44
+
45
+ ...mcpClient ,
42
46
} ;
43
47
44
48
const isLoading =
You can’t perform that action at this time.
0 commit comments