UNPKG

@sinch/mcp

Version:

Sinch MCP server

9 lines (8 loc) 462 B
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import { IPromptResponse, Tags } from '../../types'; export declare const registerManageConferenceParticipant: (server: McpServer, tags: Tags[]) => void; export declare const manageConferenceParticipantHandler: ({ conferenceId, participantId, action }: { conferenceId: string; participantId: string; action: "mute" | "unmute" | "onhold" | "resume"; }) => Promise<IPromptResponse>;