UNPKG

@sinch/mcp

Version:

Sinch MCP server

14 lines (13 loc) 576 B
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import { IPromptResponse, Tags } from '../../types'; export declare const registerSendTemplateMessage: (server: McpServer, tags: Tags[]) => void; export declare const sendTemplateMessageHandler: ({ recipient, channel, templateId, language, parameters, appId, sender, region }: { recipient: string; channel: string[]; templateId: string; language?: string; parameters?: Record<string, string>; appId?: string; sender?: string; region?: string; }) => Promise<IPromptResponse>;