rongcloud-server-mcp-python

rongcloud/rongcloud-server-mcp-python

3.2

If you are the rightful owner of rongcloud-server-mcp-python and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

Ronngcloud MCP Server is a server built on the FastMCP framework, integrating RongCloud instant messaging services.

Tools
5
Resources
0
Prompts
0

Ronngcloud MCP Server

License Version Python


๐ŸŒ


๐Ÿ“Œ Project Overview

rongcloud-server-mcp-python is an MCP server built on the FastMCP framework, integrating RongCloud instant messaging services. It supports user management, message sending, group operations, and more.


โœจ Tools

ToolDescription
register_userRegister a new user via RongCloud and return the user's token
get_user_infoRetrieve user information using RongCloud
send_private_text_messageSends private messages and returns generated message IDs mapped to each recipient user ID
send_group_text_messageSends group messages and returns generated message IDs mapped to each target group ID
get_private_messagesRetrieves historical private messages between two users within a specified time range
create_groupCreates a new group chat in RongCloud with specified members
dismiss_groupPermanently deletes a group chat from RongCloud
get_group_membersRetrieves the complete member list of an existing group chat in RongCloud
join_groupAdds one or more users to a specified group chat via RongCloud
quit_groupRemoves one or more users from a RongCloud group chat
get_current_time_millisGet the current time in milliseconds since Unix epoch (January 1, 1970 UTC).

โš™๏ธ Configuration

๐Ÿ”ง Environment Variables

Variable NameRequiredDefaultDescription
RONGCLOUD_APP_KEYโœ… Yes-RongCloud Application App Key
RONGCLOUD_APP_SECRETโœ… Yes-RongCloud Application App Secret
RONGCLOUD_API_BASEโŒ Nohttps://api-cn.ronghub.comRongCloud API base URL
RONGCLOUD_API_TIMEOUTโŒ No10API request timeout (seconds)
FASTMCP_LOG_LEVELโŒ NoWARNINGLog level (e.g., DEBUG, INFO)

๐Ÿงช Example Configuration

RONGCLOUD_APP_KEY=your_app_key
RONGCLOUD_APP_SECRET=your_app_secret
RONGCLOUD_API_BASE=https://api-cn.ronghub.com
RONGCLOUD_API_TIMEOUT=10
FASTMCP_LOG_LEVEL=WARNING

๐Ÿ’ป Claude Desktop Configuration

  • Config file paths:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%/Claude/claude_desktop_config.json
  • Example configuration:

{
  "mcpServers": {
    "rongcloud-server-mcp": {
      "command": "uvx",
      "args": [
        "rongcloud-server-mcp-python"
      ],
      "env": {
        "RONGCLOUD_APP_KEY": "your_app_key",
        "RONGCLOUD_APP_SECRET": "your_app_secret",
        "RONGCLOUD_API_BASE": "https://api-cn.ronghub.com",
        "RONGCLOUD_API_TIMEOUT": "10"
      }
    }
  }
}

๐Ÿง‘โ€๐Ÿ’ป Development Guide

๐Ÿš€ Quick Start

  1. Clone the repository and enter the project directory:

    git clone https://github.com/your-username/rcloud-server-mcp-python.git
    cd rcloud-server-mcp-python
    
  2. Copy example environment file and edit variables:

    cp .env.example .env
    

    Edit .env file to set:

    RONGCLOUD_APP_KEY=your_app_key
    RONGCLOUD_APP_SECRET=your_app_secret
    RONGCLOUD_API_BASE=https://api-cn.ronghub.com
    FASTMCP_LOG_LEVEL=INFO
    
  3. Create virtual environment, install dependencies, and start development server:

    make venv
    make sync
    make install
    make dev
    

๐Ÿ’ก Run make help to see all available commands.


โœ… Running Tests

make test     # Run all tests
make lint     # Check code style and quality
make fix      # Auto-fix formatting issues

๐Ÿค Contribution Guide

Contributions are welcome! Please follow these steps:

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/YourFeature
  3. Commit your changes: git commit -m 'Add YourFeature'
  4. Push the branch: git push origin feature/YourFeature
  5. Open a Pull Request

Please ensure the following before submitting:

  • No errors with make lint
  • All tests pass with make test
  • Code is properly formatted with make format

๐Ÿ“„ License

This project is licensed under the .