MCP.so
Sign In
R

Rongcloud Server Mcp Python

@rongcloud

About Rongcloud Server Mcp Python

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.

Basic information

Category

Communication

Transports

stdio

Publisher

rongcloud

Submitted by

wangqjia

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "rcloud-server-mcp-python": {
      "command": "uvx",
      "args": [
        "rongcloud-server-mcp-python"
      ],
      "env": {
        "RONGCLOUD_APP_KEY": "XXX",
        "RONGCLOUD_APP_SECRET": "XXX",
        "RONGCLOUD_API_BASE": "https://api.rong-api.com"
      }
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is Rongcloud Server Mcp Python?

Rongcloud Server Mcp Python is an MCP server built on the FastMCP framework that integrates RongCloud instant messaging services. It provides tools for user management, message sending, group operations, and more, targeting developers who want to interact with RongCloud via the Model Context Protocol.

How to use Rongcloud Server Mcp Python?

Install and run the server using uvx with the package name rongcloud-server-mcp-python. Configuration is done via environment variables: RONGCLOUD_APP_KEY and RONGCLOUD_APP_SECRET are required; optionally set RONGCLOUD_API_BASE, RONGCLOUD_API_TIMEOUT, and FASTMCP_LOG_LEVEL. For Claude Desktop, add the MCP server entry in claude_desktop_config.json. Alternatively, clone the repository, set up a virtual environment, and run make dev for local development.

Key features of Rongcloud Server Mcp Python

  • Register users and retrieve user tokens.
  • Send private and group text messages.
  • Retrieve historical private messages within a time range.
  • Create, dismiss, and manage group chats.
  • Add or remove users from groups.
  • Get current time in milliseconds for debugging.

Use cases of Rongcloud Server Mcp Python

  • Automate user registration and token provisioning via AI agents.
  • Send targeted private or group messages from conversational interfaces.
  • Manage group membership (create, dismiss, join, quit) programmatically.
  • Query user information and message history for analytics or moderation.

FAQ from Rongcloud Server Mcp Python

What Python version is required?

Python 3.12 or newer is required.

What environment variables are mandatory?

RONGCLOUD_APP_KEY and RONGCLOUD_APP_SECRET must be set; RONGCLOUD_API_BASE and RONGCLOUD_API_TIMEOUT are optional with defaults.

Can I retrieve past private messages?

Yes, the get_private_messages tool retrieves historical private messages between two users within a specified time range.

How do I run the server locally for development?

Clone the repository, copy .env.example to .env with your credentials, then run make venv, make sync, make install, and make dev.

How is the server configured with Claude Desktop?

Add a JSON entry in claude_desktop_config.json with the command uvx, arguments ["rongcloud-server-mcp-python"], and the required environment variables.

Comments

More Communication MCP servers