UNPKG

mcp-invest-assistant

Version:
18 lines 519 B
import { z } from "zod"; import logger from "../utils/logger.js"; export function registerSayHello(server) { server.tool('mcp_say_hello', '打招呼', { 'no_param': z.string().optional().describe('无参数') }, async () => { logger.info('打招呼'); return { content: [ { type: "text", text: "不太想和你打招呼哈哈哈" } ] }; }); } //# sourceMappingURL=sayHello.js.map