UNPKG

mcp-trends-hub

Version:

🔥 基于 Model Context Protocol (MCP) 协议的全网热点趋势一站式聚合服务

9 lines (8 loc) 264 B
import type { z } from 'zod'; export type Results = Record<string, string | number | undefined | null>[]; export type ToolConfig = { name: string; description: string; zodSchema?: z.ZodSchema<unknown>; func: (args: unknown) => Promise<Results>; };