Voyp MCP Server

start_call

Start a new phone call via Voyp API. The API returns the call id and a URL where users can track the progress of the call

Input Schema

NameRequiredDescriptionDefault
contextYesContext of the call. Ex: Order a pizza
languageNoLanguage of the call. Ex: en-US, pt-PT, fr-FR
numberYesPhone number to call in E.164 format

Input Schema (JSON Schema)

{ "properties": { "context": { "description": "Context of the call. Ex: Order a pizza", "type": "string" }, "language": { "description": "Language of the call. Ex: en-US, pt-PT, fr-FR", "type": "string" }, "number": { "description": "Phone number to call in E.164 format", "type": "string" } }, "required": [ "number", "context" ], "type": "object" }