https://github.com/francisoliverlee/rocketmq-mcp
RocketMQ Mcp Server
https://github.com/francisoliverlee/rocketmq-mcp
Last synced: 3 months ago
JSON representation
RocketMQ Mcp Server
- Host: GitHub
- URL: https://github.com/francisoliverlee/rocketmq-mcp
- Owner: francisoliverlee
- License: apache-2.0
- Created: 2025-03-19T02:55:10.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-03-28T17:07:08.000Z (3 months ago)
- Last Synced: 2025-03-28T18:23:47.236Z (3 months ago)
- Language: Java
- Homepage:
- Size: 133 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- mcp-index - RocketMQ Mcp Server - Connects AI models to RocketMQ providing real-time data through Server-Sent Events (SSE). Configurable with name server addresses and authentication keys for secure access. (APIs and HTTP Requests)
README
### Build
```shell
./build.sh
```### Run
#### start
```shell
java -jar target/rocketmq-mcp-server.jar
```#### check
```shell
tigerweili@M4 ~ % curl http://127.0.0.1:6868/sse
id:8e323b3b-cb73-4b35-8ac5-172b453eae79
event:endpoint
data:sse
```### Use it
```json
{
"mcpServers": {
"rocketmq-mcp": {
"url": "http://your-rocketmq-mcp-server-ip:6868/sse",
"env": {
"NS_ADDR": "1.1.1.1:9876;2.2.2.2:9876",
"AK": "",
"SK": ""
}
}
}
}NS_ADDR: name server address list
AK: access key
SK: secret key
```