UNPKG

mcp-discord-agent-comm

Version:

An MCP server enabling async communication between AI agents and users via Discord - perfect for long-running tasks requiring remote interaction

15 lines 497 B
import type { Client, TextChannel } from "discord.js"; export declare function getChannel(discord: Client, channelId?: string, defaultChannelId?: string): Promise<TextChannel>; export declare function createSuccessResponse(data: Record<string, unknown>): { content: { type: "text"; text: string; }[]; }; export declare function createErrorResponse(error: unknown): { content: { type: "text"; text: string; }[]; }; //# sourceMappingURL=utils.d.ts.map