R

Rocket.Chat

Post and read Rocket.Chat channels.

·No reviews yet
Repo
Share:

About

Auto-generated

Rocket.Chat is a Model Context Protocol server in the Communication category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

send_message
Post a message to a channel or user
list_channels
List channels the bot can access
search_messages
Search messages by query and date range

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Rocket.Chat.

What is the primary function of the Rocket.Chat MCP?
The Rocket.Chat MCP facilitates posting and reading messages in Rocket.Chat channels. It acts as an interface to integrate Rocket.Chat communication within an MCP-compatible environment.
How do I install and configure the Rocket.Chat MCP in a client like Cline?
To install it, add 'rocket-chat' to your Cline configuration's list of enabled MCPs. Configuration typically involves providing your Rocket.Chat instance URL and API key through environment variables or a configuration file defined by your client.
Does the Rocket.Chat MCP require an API key for authentication?
Yes, this MCP uses an API key for authentication. You will need to generate or obtain an API key from your Rocket.Chat instance and configure it within your MCP client.
What are the main communication capabilities exposed by this MCP?
The Rocket.Chat MCP allows users to send messages to Rocket.Chat channels and retrieve existing messages from those channels. This enables automated interactions and content syndication.
What are the cost and licensing implications of using the Rocket.Chat MCP?
The MCP itself is open source, as it's provided by the community. However, the cost and licensing of the Rocket.Chat server that you connect to depend on your specific Rocket.Chat deployment.
What is a common limitation when using the Rocket.Chat MCP?
A common limitation is that an API key may have restricted permissions, limiting the MCP's ability to perform all desired actions. Ensure your API key has the necessary scope for posting and reading channel content.

Install Rocket.Chat

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "rocket-chat": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-rocket-chat"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "rocket-chat": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-rocket-chat"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "rocket-chat": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-rocket-chat"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.