UNPKG

feishu-user-token-mcp-v2

Version:

A Model Context Protocol (MCP) server for Feishu user token management and authentication

16 lines (15 loc) 338 B
interface Config { app_id?: string; app_secret?: string; user_token?: string; refresh_token?: string; } interface McpToolResult { [key: string]: any; content: { type: 'text'; text: string; }[]; } export declare function getFeishuTokenHandler(config: Config): Promise<McpToolResult>; export {};