UNPKG

@sinch/mcp

Version:

Sinch MCP server

16 lines (15 loc) 569 B
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import { IPromptResponse, Tags } from '../../types'; export declare const registerSendLocationMessage: (server: McpServer, tags: Tags[]) => void; export declare const sendLocationMessageHandler: ({ recipient, channel, address, appId, sender, region }: { recipient: string; channel: string | string[]; address: string | { lat: number; long: number; title: string; }; appId?: string; sender?: string; region?: string; }) => Promise<IPromptResponse>;