UNPKG

@sinch/mcp

Version:

Sinch MCP server

12 lines (11 loc) 486 B
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import { IPromptResponse, Tags } from '../../types'; export declare const registerSendTextMessage: (server: McpServer, tags: Tags[]) => void; export declare const sendTextMessageHandler: ({ recipient, channel, message, appId, sender, region, }: { message: string; channel: string | string[]; recipient: string; appId?: string; sender?: string; region?: string; }) => Promise<IPromptResponse>;