Skip to content

Commit 9553b9f

Browse files
authored
updated readme and changed release workflow
updated readme and changed release workflow
2 parents 8e60e6a + 6489fb0 commit 9553b9f

File tree

3 files changed

+4
-30
lines changed

3 files changed

+4
-30
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name: Release to PyPI
33
on:
44
push:
55
tags:
6-
- '[0-9][0-9][0-9][0-9].[0-9]+.[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]'
6+
- 'v[0-9]+.[0-9]+.[0-9]+'
7+
78

89
permissions:
910
contents: write

README.md

Lines changed: 1 addition & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,7 @@ Use uvx directly in your MCP client config
2727
"rabbitmq": {
2828
"command": "uvx",
2929
"args": [
30-
"mcp-server-rabbitmq@latest",
31-
"--rabbitmq-host",
32-
"<hostname ex. test.rabbit.com, localhost>",
33-
"--port",
34-
"<port number ex. 5672>",
35-
"--username",
36-
"<rabbitmq username>",
37-
"--password",
38-
"<rabbitmq password>",
39-
"--api-port",
40-
"<port number for the admin API, default to 15671>",
41-
"--use-tls",
42-
"<true if uses amqps, false otherwise>"
30+
"amq-mcp-server-rabbitmq@latest",
4331
]
4432
}
4533
}
@@ -59,27 +47,12 @@ Use uvx directly in your MCP client config
5947
"/path/to/repo/mcp-server-rabbitmq",
6048
"run",
6149
"mcp-server-rabbitmq",
62-
"--rabbitmq-host",
63-
"<hostname ex. test.rabbit.com, localhost>",
64-
"--port",
65-
"<port number ex. 5672>",
66-
"--username",
67-
"<rabbitmq username>",
68-
"--password",
69-
"<rabbitmq password>",
70-
"--use-tls",
71-
"<true if uses amqps, false otherwise>"
7250
]
7351
}
7452
}
7553
}
7654
```
7755

78-
## Roadmap
79-
1. Full feature parity with `rabbitmqadmin`
80-
1. Support RabbitMQ OAuth instead of basic authentication
81-
82-
8356
## Development
8457

8558
### Setup Development Environment

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "amq-mcp-server-rabbitmq"
3-
version = "2.2.1"
3+
version = "2.2.2"
44
description = "A Model Context Protocol server providing access to RabbitMQ by LLMs"
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)