UNPKG

@sinch/mcp

Version:

Sinch MCP server

13 lines (12 loc) 530 B
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import { IPromptResponse, Tags } from '../../types'; export declare const registerSendEmail: (server: McpServer, tags: Tags[]) => void; export declare const sendEmailHandler: ({ recipient, subject, sender, body, template, templateVariables, domain }: { recipient: string; subject: string; sender?: string; body?: string; template?: string; templateVariables?: Record<string, string>; domain?: string; }) => Promise<IPromptResponse>;