data
Vonage MCP, CLI, and Lua Integration for AI Agents
Vonage integration docs for AI agents: MCP gateway setup, Vonage CLI commands, Lua API reference, credentials, and function schemas.Vonage for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
vonage.vonage_get_account_balance | Read read | 0 | Get the current balance of your Vonage account. |
vonage.vonage_list_applications | Read read | 2 | List Vonage applications configured on your account. Applications define how Vonage handles calls and messages. |
vonage.vonage_list_messages | Read read | 2 | Search and list SMS messages from your Vonage account. Requires a date in YYYY-MM-DD format. Optionally filter by recipient number. |
vonage.vonage_list_numbers | Read read | 4 | List phone numbers purchased on your Vonage account. Optionally filter by pattern. |
vonage.vonage_send_sms | Write write | 4 | Send an SMS message via Vonage. Provide sender, recipient, and message text. The recipient number must be in E.164 format (e.g., 14155552671). |
vonage.vonage_verify_check | Read read | 2 | Check a verification code against a Vonage Verify request. Provide the request_id from the verification and the code entered by the user. |
vonage.vonage_verify_request | Read read | 2 | Send a verification code to a phone number via Vonage Verify. Returns a request_id used to check the code later. |