mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-21 02:40:14 +01:00
🧬 refactor: Optimize MCP Tool Queries with Server-Centric Architecture
refactor: optimize mcp tool queries by removing redundancy, making server-centric structure, enabling query only when expected, minimize looping/transforming query data, eliminating unused/compute-heavy methods
ci: MCP Server Tools Mocking in Agent Tests
29 lines
970 B
TypeScript
29 lines
970 B
TypeScript
/**
|
|
* Dedicated queries for MCP (Model Context Protocol) tools
|
|
* Decoupled from regular LibreChat tools
|
|
*/
|
|
import { useQuery } from '@tanstack/react-query';
|
|
import { QueryKeys, dataService } from 'librechat-data-provider';
|
|
import type { UseQueryOptions, QueryObserverResult } from '@tanstack/react-query';
|
|
import type { MCPServersResponse } from 'librechat-data-provider';
|
|
|
|
/**
|
|
* Hook for fetching MCP-specific tools
|
|
* @param config - React Query configuration
|
|
* @returns MCP servers with their tools
|
|
*/
|
|
export const useMCPToolsQuery = <TData = MCPServersResponse>(
|
|
config?: UseQueryOptions<MCPServersResponse, unknown, TData>,
|
|
): QueryObserverResult<TData> => {
|
|
return useQuery<MCPServersResponse, unknown, TData>(
|
|
[QueryKeys.mcpTools],
|
|
() => dataService.getMCPTools(),
|
|
{
|
|
refetchOnWindowFocus: false,
|
|
refetchOnReconnect: false,
|
|
refetchOnMount: false,
|
|
staleTime: 5 * 60 * 1000, // 5 minutes
|
|
...config,
|
|
},
|
|
);
|
|
};
|