import { ToolArgs } from "./types" export function getAccessMcpResourceDescription(args: ToolArgs): string | undefined { if (!args.mcpHub) { return undefined } return `## access_mcp_resource Description: Request to access a resource provided by a connected MCP server. Resources represent data sources that can be used as context, such as files, API responses, or system information. Parameters: - server_name: (required) The name of the MCP server providing the resource - uri: (required) The URI identifying the specific resource to access Usage: server name here resource URI here Example: Requesting to access an MCP resource weather-server weather://san-francisco/current ` }