wgc
Version:
The official CLI tool to manage the GraphQL Federation Platform Cosmo
14 lines (13 loc) • 504 B
TypeScript
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
import type { BaseCommandOptions } from '../../../core/types/types.js';
/**
* Registers the dream-query-workflow tool with the MCP server.
*
* @param params - The parameters for registration.
* @param params.server - The MCP server instance.
* @param params.opts - Base command options.
*/
export declare const registerDreamQueryWorkflowTool: ({ server, opts }: {
server: McpServer;
opts: BaseCommandOptions;
}) => void;