UNPKG

wgc

Version:

The official CLI tool to manage the GraphQL Federation Platform Cosmo

14 lines (13 loc) 526 B
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import type { BaseCommandOptions } from '../../../core/types/types.js'; /** * Registers the schema-change-proposal-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 registerSchemaChangeProposalWorkflowTool: ({ server, opts, }: { server: McpServer; opts: BaseCommandOptions; }) => void;