Overview
what is Rocketmq Mcp?
Rocketmq Mcp is a message queue management tool designed to simplify the deployment and management of RocketMQ servers.
how to use Rocketmq Mcp?
To use Rocketmq Mcp, build the project using the provided shell script, start the server with the specified command, and configure the server parameters in JSON format.
key features of Rocketmq Mcp?
- Simplified deployment of RocketMQ servers
- Easy configuration through JSON
- Real-time server status checking via SSE
use cases of Rocketmq Mcp?
- Managing multiple RocketMQ server instances.
- Monitoring server health and performance.
- Configuring server settings dynamically.
FAQ from Rocketmq Mcp?
- What is the purpose of Rocketmq Mcp?
Rocketmq Mcp is designed to streamline the management of RocketMQ servers, making it easier for developers to deploy and monitor their message queue systems.
- How do I start the Rocketmq Mcp server?
You can start the server by running the command:
java -jar target/rocketmq-mcp-server.jar.
- Can I configure multiple servers?
Yes! You can configure multiple RocketMQ servers by specifying their addresses in the JSON configuration.
Server Config
{
"mcpServers": {
"rocketmq-mcp": {
"command": "java",
"args": [
"-jar",
"rocketmq-mcp-server.jar"
],
"env": {
"NS_ADDR": "<Your-Namesrv-Address-List>",
"AK": "<Access-Key-Of-Admin>",
"SK": "<Secret-Key-Of-Admin>"
}
}
}
}