UNPKG

@trendmoon/mcp-server

Version:

TrendMoon MCP Server - Library and Standalone Server for Cryptocurrency and Social Data

21 lines 523 B
export interface McpToolCallbackExtra { [key: string]: unknown; } export interface McpRichContentTextItem { type: "text"; text: string; [key: string]: unknown; } export type McpToolReturnContent = Array<McpRichContentTextItem>; export interface McpToolReturnValue { content: McpToolReturnContent; _meta?: { [key: string]: unknown; }; structuredContent?: { [key: string]: unknown; }; isError?: boolean; [key: string]: unknown; } //# sourceMappingURL=types.d.ts.map