ringcentral-mcp
Enables interaction with RingCentral phone system data, including account info, extensions, presence, call queues, contacts, and call logs/recordings, through MCP tools.
README
ringcentral-mcp
RingCentral MCP Service — a stateless HTTP MCP server wrapping the RingCentral REST API, covering account info, extensions, phone numbers, presence, call queues, contacts, and call logs/recordings.
Tech stack: Python 3.12 + uv + FastMCP (Starlette/Uvicorn)
Scope
13 tools, aligned to MSPbots' historical usage categories (Account Info, Extension, Phone Numbers, Presence, Queues, Queue Members, Internal Contacts, External Contacts, Company Call Log Records, User Call Log Records, Call Recording).
Authentication
RingCentral's REST API uses the JWT bearer flow — a server-to-server grant with no user browser redirect. A JWT credential is generated in the RingCentral admin console for a dedicated "service user" (Roles & Permissions → the service user's JWT credential), then exchanged for a short-lived access token:
POST https://platform.ringcentral.com/restapi/oauth/token
Authorization: Basic base64(client_id:client_secret)
Content-Type: application/x-www-form-urlencoded
grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer&assertion=<jwt>
The response includes both an access token and a refresh token, but since re-exchanging the JWT itself is cheap and this service must stay stateless, it re-authenticates on every call rather than caching/refreshing.
Quick Start
cd D:\claude\project\ringcentral-mcp
uv sync
$env:RINGCENTRAL_CLIENT_ID="your_app_client_id"
$env:RINGCENTRAL_CLIENT_SECRET="your_app_client_secret"
$env:RINGCENTRAL_JWT="your_service_user_jwt_credential"
uv run ringcentral-mcp
Configuration
Copy .env.example to .env and fill in your values:
| Variable | Default | Description |
|---|---|---|
RINGCENTRAL_CLIENT_ID |
— | RingCentral app's client ID |
RINGCENTRAL_CLIENT_SECRET |
— | RingCentral app's client secret |
RINGCENTRAL_JWT |
— | JWT credential issued to a service user |
AUTH_MODE |
gateway |
gateway = credentials per-request via headers (SOP-compliant); env = shared credentials from env vars (local dev only) |
MCP_TRANSPORT |
stdio |
stdio (Claude Desktop) or http (gateway) |
MCP_HTTP_PORT |
8080 |
HTTP server port |
HEADER 授权参数说明
| Header | 类型 | 是否必填 | 默认值 | 枚举值 | 字段描述 | Example |
|---|---|---|---|---|---|---|
X-RingCentral-Client-Id |
string | 是 | 无 | 无 | RingCentral App 的 Client ID | abCdEfGhIjKlMnOpQr |
X-RingCentral-Client-Secret |
string | 是 | 无 | 无 | RingCentral App 的 Client Secret | xYz123AbC456DeF789 |
X-RingCentral-Jwt |
string | 是 | 无 | 无 | 绑定在某个 Service User 上的 JWT 凭据(RingCentral 后台 Roles & Permissions 生成),本服务用其换 access token | eyJhbGciOiJSUzI1NiIs...(一长串 JWT 字符串) |
Claude Desktop Setup
{
"mcpServers": {
"ringcentral": {
"command": "uv",
"args": ["run", "--directory", "D:/claude/project/ringcentral-mcp", "ringcentral-mcp"],
"env": {
"RINGCENTRAL_CLIENT_ID": "your_app_client_id",
"RINGCENTRAL_CLIENT_SECRET": "your_app_client_secret",
"RINGCENTRAL_JWT": "your_service_user_jwt_credential"
}
}
}
}
Transport Modes
stdio
$env:RINGCENTRAL_CLIENT_ID="your_app_client_id"
$env:RINGCENTRAL_CLIENT_SECRET="your_app_client_secret"
$env:RINGCENTRAL_JWT="your_service_user_jwt_credential"
uv run ringcentral-mcp
HTTP — single-tenant
$env:RINGCENTRAL_CLIENT_ID="your_app_client_id"
$env:RINGCENTRAL_CLIENT_SECRET="your_app_client_secret"
$env:RINGCENTRAL_JWT="your_service_user_jwt_credential"
$env:MCP_TRANSPORT="http"
$env:AUTH_MODE="env"
uv run ringcentral-mcp
HTTP — gateway / multi-tenant
$env:MCP_TRANSPORT="http"
$env:AUTH_MODE="gateway"
uv run ringcentral-mcp
# Each request must include: X-RingCentral-Client-Id, X-RingCentral-Client-Secret, X-RingCentral-Jwt headers
Available Tools (13)
| Tool | Description | API |
|---|---|---|
ringcentral_get_account_info |
Get company/account info | GET /restapi/v1.0/account/~ |
ringcentral_list_extensions |
List extensions | GET /restapi/v1.0/account/~/extension |
ringcentral_get_extension |
Get one extension's details | GET /restapi/v1.0/account/~/extension/{extensionId} |
ringcentral_list_phone_numbers |
List company + extension phone numbers | GET /restapi/v1.0/account/~/phone-number |
ringcentral_get_presence |
Get an extension's presence/DND status | GET /restapi/v1.0/account/~/extension/{extensionId}/presence |
ringcentral_list_queues |
List call queues | GET /restapi/v1.0/account/~/call-queues |
ringcentral_list_queue_members |
List a call queue's members | GET /restapi/v1.0/account/~/call-queues/{groupId}/members |
ringcentral_list_internal_contacts |
List company directory entries | GET /restapi/v1.0/account/~/directory/entries |
ringcentral_list_external_contacts |
List an extension's personal address book | GET /restapi/v1.0/account/~/extension/{extensionId}/address-book/contact |
ringcentral_list_company_call_log |
Account-wide call log | GET /restapi/v1.0/account/~/call-log |
ringcentral_list_user_call_log |
Call log for one extension | GET /restapi/v1.0/account/~/extension/{extensionId}/call-log |
ringcentral_get_call_recording |
Get a recording's metadata | GET /restapi/v1.0/account/~/recording/{recordingId} |
ringcentral_download_call_recording |
Get a recording's media metadata (size/content-type only — binary audio isn't representable as MCP tool output) | GET /restapi/v1.0/account/~/recording/{recordingId}/content |
Known Gaps
- ⚠️ Not yet tested against a live RingCentral account. All 13 tools have been checked structurally only (MCP handshake, tools-list, schema validity,
/health, gateway 401 credential-gating). Per the parent ClickUp task, this is currently blocked at the business/procurement level — MSPbots has never purchased a RingCentral service (no paid user seat), and a JWT credential can only be bound to a real service user account, so no test credentials are available yet. - Endpoints verified directly against RingCentral's official OpenAPI spec (
assets-developers.ringcentral.com/dpw/api-reference/specs/public/office/rc-platform.yml, linked from the developer docs site) — not guessed. ringcentral_get_call_recording/ringcentral_download_call_recording: there is no standalone "list all recordings" endpoint — recording IDs must come from a call-log entry'srecording.idfield (query call logs withrecordingType/withRecordingparams to surface them).- "Queues" have no separate
/call-queueresource type in RingCentral's model — they're extensions with type Department/Call Queue, exposed at the dedicated/call-queuespaths used here. - Scope is limited to the 13 operations above, not RingCentral's full API surface (which also includes messaging/SMS, meetings, fax, call control/RingOut, and account provisioning).
API Reference
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。