/** * MCP tool registration for the Green Design System MCP Server. * * This module wires MCP protocol schemas to shared handler functions. * The actual business logic lives in ./handlers.ts so it can be reused * by other consumers (e.g. the context CLI). * * @module tools */ import type { Server } from '@modelcontextprotocol/sdk/server/index.js'; /** * Register tool handlers on the MCP server. * * Defines the MCP tool schemas (names, descriptions, input schemas) and * delegates each tool call to the corresponding shared handler function. */ export declare function setupToolHandlers(server: Server): void;