RongCloud MCP Server
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FASTMCP_LOG_LEVEL | No | Log level (e.g., DEBUG, INFO) | WARNING |
| RONGCLOUD_APP_KEY | Yes | RongCloud Application App Key | |
| RONGCLOUD_API_BASE | No | RongCloud API base URL | https://api-cn.ronghub.com |
| RONGCLOUD_APP_SECRET | Yes | RongCloud Application App Secret | |
| RONGCLOUD_API_TIMEOUT | No | API request timeout (seconds) | 10 |
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 |
|---|---|
| get_current_time_millisA | Get the current time in milliseconds since Unix epoch (January 1, 1970 UTC). |
| register_userC | Register a new user via RongCloud and return the user's token. |
| get_user_infoC | Retrieve user information using RongCloud. |
| send_private_text_messageC | Send private text messages to one or multiple recipients via RongCloud. |
| send_group_text_messageB | Send group text messages to one or multiple groups via RongCloud. |
| get_private_messagesA | Retrieves historical private messages between two users within a specified time range.The time range is defined by startTime (newest) and endTime (oldest),with endTime must be earlier than startTime. |
| create_groupB | Creates a new group chat in RongCloud with specified members. |
| dismiss_groupB | Permanently deletes a group chat from RongCloud. |
| get_group_membersA | Retrieves the complete member list of an existing group chat in RongCloud. |
| join_groupB | Adds one or more users to a specified group chat via RongCloud. |
| quit_groupB | Removes one or more users from a RongCloud group chat. |
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 11 tools
Each tool has a distinct purpose: group CRUD, messaging, user management, and a utility function. No two tools perform overlapping actions, and descriptions clearly differentiate them.
Most tools follow a consistent verb_noun pattern (e.g., create_group, send_private_text_message). However, get_current_time_millis breaks the pattern by using an adjective and unit, causing a minor inconsistency.
With 11 tools covering group management, messaging, and user management, the scope is well-calibrated for a chat API. No tool feels superfluous, and the count fits typical MCP server sizes.
Core operations like create/dismiss groups, join/quit, send messages, and retrieve history are covered. However, missing update group, delete user, edit/delete messages, and conversation listing create notable gaps that agents may encounter.