UNPKG

@sinch/mcp

Version:

Sinch MCP server

17 lines (16 loc) 580 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[]; address: { lat?: number; long?: number; title?: string; address?: string; }; appId?: string; sender?: string; region?: string; }) => Promise<IPromptResponse>;