communication
RingCentral MCP, CLI, and Lua Integration for AI Agents
RingCentral integration docs for AI agents: MCP gateway setup, RingCentral CLI commands, Lua API reference, credentials, and function schemas.
6 functions 5 read 1 write Manual OAuth token auth
RingCentral 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.
Machine-Readable Metadata
- integration_slug
ringcentral- route_slug
ringcentral- package
ringcentral- auth_strategy
oauth2_manual_tokenManual OAuth token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. RingCentral CLIHeadless setup and direct function calls. RingCentral MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
RingCentral MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for RingCentral.
Claude Code RingCentral MCP setup for Claude Code. Cursor RingCentral MCP setup for Cursor. Codex RingCentral MCP setup for Codex. OpenAI Agents RingCentral MCP setup for OpenAI Agents SDK. Claude Agent SDK RingCentral MCP setup for Claude Agent SDK. Vercel AI SDK RingCentral MCP setup for Vercel AI SDK. LangChain RingCentral MCP setup for LangChain. LangGraph RingCentral MCP setup for LangGraph. CrewAI RingCentral MCP setup for CrewAI. MCP clients RingCentral MCP setup for Generic MCP Clients.
RingCentral CLI Matrix
Use these pages for direct RingCentral CLI workflows in scripts, CI, cron, and agent wrappers.
CI RingCentral CLI for CI. Cron Jobs RingCentral CLI for cron jobs. Shell Scripts RingCentral CLI for shell scripts. Headless Automation RingCentral CLI for headless automation. Coding Agents RingCentral CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
ringcentral.ringcentral_list_messages | Read read | 7 | List messages from the RingCentral message store. Supports filtering by type (SMS, Fax, VoiceMail), date range, read status, and direction. Returns paginated message records. |
ringcentral.ringcentral_get_message | Read read | 1 | Get detailed information about a specific message in the RingCentral message store by its ID. Returns the full message record including sender, recipient, subject, and content. |
ringcentral.ringcentral_send_sms | Write write | 3 | Send an SMS message via RingCentral. The "from" number must be a phone number assigned to the authenticated extension. The "to" number is the destination phone number. |
ringcentral.ringcentral_list_calls | Read read | 7 | List call log records for the authenticated RingCentral extension. Supports filtering by date range, direction, type, and phone number. Returns paginated call records with caller, receiver, duration, and result. |
ringcentral.ringcentral_list_contacts | Read read | 3 | List contacts from the RingCentral personal address book. Supports filtering by name prefix and pagination. Returns contact records with names, phone numbers, and email addresses. |
ringcentral.ringcentral_get_current_user | Read read | 0 | Get information about the currently authenticated RingCentral extension. Returns extension ID, name, status, phone numbers, and account details. |