Skip to content

Add describe_bills tool for cost analysis #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Apr 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ Add the following configuration to the MCP client configuration file:
* `describe_db_instance_accounts`: Batch retrieves account information for multiple RDS instances.
* `describe_available_classes`: Query available instance classes and storage ranges.
* `describe_available_zones`: Query available zones for RDS instances.
* `describe_bills`: Query the consumption summary of all product instances or billing items for a user within a specific billing period.
* `describe_vpcs`: Query VPC list.
* `describe_vswitches`: Query VSwitch list.
* `describe_slow_log_records`: Query slow log records for an RDS instance.
Expand Down
1 change: 1 addition & 0 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ git clone https://github.com/aliyun/alibabacloud-rds-openapi-mcp-server.git
* `describe_db_instance_accounts`: 批量查询实例的账号信息
* `describe_available_classes`: 查询可用实例规格和存储范围
* `describe_available_zones`: 查询RDS可用区
* `describe_bills`: 批量查询实例账单信息.
* `describe_vpcs`: 查询VPC列表
* `describe_vswitches`: 查询虚拟交换机列表
* `describe_slow_log_records`: 查询RDS慢日志记录
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[project]
name = "alibabacloud-rds-openapi-mcp-server"
version = "1.2.2"
version = "1.3.0"
description = "MCP server for RDS Services via OPENAPI."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"alibabacloud-bssopenapi20171214>=5.0.0",
"alibabacloud-rds20140815>=11.0.0",
"alibabacloud-vpc20160428>=6.11.4",
"httpx>=0.28.1",
Expand All @@ -28,4 +29,4 @@ Source = "https://github.com/aliyun/alibaba-cloud-ops-mcp-server.git"
packages = ["src/alibabacloud_rds_openapi_mcp_server"]

[project.scripts]
alibabacloud-rds-openapi-mcp-server = "alibabacloud_rds_openapi_mcp_server.server:main"
alibabacloud-rds-openapi-mcp-server = "alibabacloud_rds_openapi_mcp_server.server:main"
Loading