other
Vonage MCP Gateway for AI Agents
Expose Vonage tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.
7 functions 6 read 1 write API key auth
Vonage MCP Gateway
Expose Vonage to MCP clients with `kosmokrator mcp:serve --integration=vonage`.
If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash kosmokrator mcp:gateway:install --integration=vonage --write=deny --json {
"mcpServers": {
"kosmokrator-vonage": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=vonage",
"--write=deny"
]
}
}
} Serve Manually
kosmokrator mcp:serve --integration=vonage --write=deny MCP Tool Names
KosmoKrator exposes integration tools through the gateway with stable names:
| MCP tool | Source function | Type |
|---|---|---|
integration__vonage__vonage_get_account_balance | vonage.vonage_get_account_balance | Read read |
integration__vonage__vonage_list_applications | vonage.vonage_list_applications | Read read |
integration__vonage__vonage_list_messages | vonage.vonage_list_messages | Read read |
integration__vonage__vonage_list_numbers | vonage.vonage_list_numbers | Read read |
integration__vonage__vonage_send_sms | vonage.vonage_send_sms | Write write |
integration__vonage__vonage_verify_check | vonage.vonage_verify_check | Read read |
integration__vonage__vonage_verify_request | vonage.vonage_verify_request | Read read |
Write Access
Start with --write=deny for read-only MCP clients. Use --write=ask or
--write=allow only when the client and workspace are trusted.