ringcentral-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AUTH_MODE | No | gateway = credentials per-request via headers (SOP-compliant); env = shared credentials from env vars (local dev only) | gateway |
| MCP_HTTP_PORT | No | HTTP server port | 8080 |
| MCP_TRANSPORT | No | stdio (Claude Desktop) or http (gateway) | stdio |
| RINGCENTRAL_JWT | No | JWT credential issued to a service user | |
| RINGCENTRAL_CLIENT_ID | No | RingCentral app's client ID | |
| RINGCENTRAL_CLIENT_SECRET | No | RingCentral app's client secret |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| ringcentral_get_account_infoA | Get basic company/account information for the current account. |
| ringcentral_list_extensionsA | List extensions on the account. |
| ringcentral_get_extensionA | Get a single extension's details. |
| ringcentral_list_phone_numbersA | List all company and extension phone numbers. |
| ringcentral_get_presenceA | Get an extension's presence/telephony/do-not-disturb status. |
| ringcentral_list_queuesB | List call queues on the account. |
| ringcentral_list_queue_membersA | List the members of a call queue. |
| ringcentral_list_internal_contactsA | List internal company directory entries (corporate users/extensions). |
| ringcentral_list_external_contactsA | List an extension's personal address-book contacts. |
| ringcentral_list_company_call_logA | List account-wide call log records. |
| ringcentral_list_user_call_logA | List call log records for a specific extension/user. |
| ringcentral_get_call_recordingA | Get a call recording's metadata (returns a content URI, not the audio itself). |
| ringcentral_download_call_recordingA | Download a call recording's media content (returns metadata about the binary — content type and size — not the raw audio bytes, which aren't representable as MCP tool output). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 13 tools
Each tool targets a distinct resource and action (presence, account, extensions, queues, contacts, call logs, recordings). The only minor overlap is between ringcentral_list_extensions and ringcentral_list_internal_contacts, but their descriptions clearly differentiate account extensions from directory entries.
All tools follow a consistent ringcentral_<verb>_<resource> pattern, using 'get' for single items and 'list' for collections. The naming is uniformly snake_case and predictable, making it easy to infer the purpose of each tool.
Thirteen tools is well-scoped for a RingCentral API server covering account info, extensions, contacts, call logs, and recordings. Each tool has a clear purpose and none feel redundant; the count is in the ideal range for a domain-specific MCP server.
The surface covers the main read-only resources: presence, account, extensions, phone numbers, queues, contacts, and call logs/recordings. Minor gaps like missing single-phone-number lookup or queue detail endpoints are workable, as the list tools provide sufficient data for most queries.