Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
bytedance avatar

Volcengine Rds Mysql

  • 52 installs
  • 411 repo stars
  • Updated August 4, 2026
  • bytedance/agentkit-samples

volcengine-rds-mysql is a Claude skill that manages and inspects Volcengine RDS MySQL instances, databases, and accounts.

About

volcengine-rds-mysql is a Claude skill that manages Volcengine RDS MySQL instances by calling call_rds_mysql.py via uv or python. It lists instances, databases, and accounts, views parameters and templates, queries VPCs and subnets for instance creation, and gets pricing. A developer uses it for RDS MySQL management and ops tasks from natural language. It reads Volcengine access and secret keys and runs on macOS or Linux.

  • Ops agent for Volcengine RDS MySQL instances via a bundled script
  • Manages instances, databases, accounts, parameters, and pricing
  • Queries VPC and subnet info to support instance creation

Volcengine Rds Mysql by the numbers

  • 52 all-time installs (skills.sh)
  • Ranked #408 of 911 Databases skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

volcengine-rds-mysql capabilities & compatibility

Free script; needs Volcengine access keys; RDS MySQL instances billed by Volcengine

Capabilities
database management · instance inspection
Works with
mysql
Use cases
database · devops
Platforms
macOS · Linux
Runs
Runs locally
Pricing
Bring your own API key
From the docs

What volcengine-rds-mysql says it does

使用火山引擎 RDS MySQL MCP Server,帮助用户完成 RDS MySQL 相关的实例管理、数据库操作、账号管理和运维任务
SKILL.md
避免在生产环境直接执行高风险操作(如删除实例、删除数据库等);
SKILL.md
npx skills add https://github.com/bytedance/agentkit-samples --skill volcengine-rds-mysql

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs52
repo stars411
Last updatedAugust 4, 2026
Repositorybytedance/agentkit-samples

What it does

Manage Volcengine RDS MySQL instances, databases, accounts, and parameters from natural language.

Who is it for?

Listing and managing Volcengine RDS MySQL instances, databases, accounts, and parameters.

Skip if: Managing MongoDB or PostgreSQL (use the sibling skills) or running without Volcengine keys.

When should I use this skill?

A user needs to view or manage a Volcengine RDS MySQL instance.

What you get

You get instance, database, account, and parameter data plus network info for creation.

  • instance, database, account, parameter, VPC/subnet and pricing data

By the numbers

  • supports ten actions including list-instances, list-databases, list-accounts, list-vpcs, and get-price

Files

SKILL.mdMarkdownGitHub ↗

Skill 概览

本 Skill 用于在对话中充当 火山引擎 RDS MySQL 的智能运维代理:

  • 理解用户的自然语言需求(中文或英文),识别是否与 RDS MySQL 相关;
  • 直接调用内置脚本 scripts/call_rds_mysql.py 实时查询 RDS MySQL 并获取结果;
  • 当获取到结果或用户粘贴错误信息时,进一步解释、诊断并给出后续建议

工作模式:

  • 使用 scripts/call_rds_mysql.py 脚本直接获取 RDS MySQL 的实时响应

运行方式: 脚本支持两种运行方式:

# 方式 1: 使用 uv (推荐,自动管理依赖)
uv run ./scripts/call_rds_mysql.py [action] [options]

# 方式 2: 使用 python (需要预先安装依赖)
python ./scripts/call_rds_mysql.py [action] [options]

标准使用流程

1. 确认任务类型与参数

  • 判断用户意图:查询实例列表、查看实例详情、管理数据库、管理账号、查看参数配置、创建实例等。
  • 收集必要参数(如未指定则使用默认值):
  • --region:地域 ID(默认 cn-beijing)
  • --action:操作类型(如 list-instancesdescribe-instancelist-databases 等)
  • --instance-id:实例 ID(部分操作必需)

2. 构造查询并调用脚本

  • 示例(以下命令可使用 uv runpython 运行):
     # 查询实例列表
     uv run ./scripts/call_rds_mysql.py list-instances
     # 或
     python ./scripts/call_rds_mysql.py list-instances

     # 查询指定实例详情
     uv run ./scripts/call_rds_mysql.py describe-instance --instance-id mysql-xxx
     # 或
     python ./scripts/call_rds_mysql.py describe-instance --instance-id mysql-xxx

     # 查询实例的数据库列表
     uv run ./scripts/call_rds_mysql.py list-databases --instance-id mysql-xxx
     # 或
     python ./scripts/call_rds_mysql.py list-databases --instance-id mysql-xxx

     # 查询实例的账号列表
     uv run ./scripts/call_rds_mysql.py list-accounts --instance-id mysql-xxx
     # 或
     python ./scripts/call_rds_mysql.py list-accounts --instance-id mysql-xxx

     # 查询实例参数
     uv run ./scripts/call_rds_mysql.py list-parameters --instance-id mysql-xxx
     # 或
     python ./scripts/call_rds_mysql.py list-parameters --instance-id mysql-xxx

     # 查询 VPC 列表(用于创建实例)
     uv run ./scripts/call_rds_mysql.py list-vpcs
     # 或
     python ./scripts/call_rds_mysql.py list-vpcs

     # 查询子网列表
     uv run ./scripts/call_rds_mysql.py list-subnets --vpc-id vpc-xxx --zone-id cn-beijing-a
     # 或
     python ./scripts/call_rds_mysql.py list-subnets --vpc-id vpc-xxx --zone-id cn-beijing-a

3. 解析结果并后续处理

  • 将 RDS MySQL 的响应用自然语言解释给用户;
  • 如返回包含敏感操作,评估风险并提醒:
  • 避免在生产环境直接执行高风险操作(如删除实例、删除数据库等);
  • 建议在测试环境验证或做好备份。

工具脚本使用说明

支持的操作(Actions)

操作说明必需参数
list-instances查询 RDS MySQL 实例列表
describe-instance查询指定实例详情--instance-id
list-databases查询实例的数据库列表--instance-id
list-accounts查询实例的账号列表--instance-id
list-parameters查询实例的参数配置--instance-id
list-parameter-templates查询参数模板列表
describe-parameter-template查询参数模板详情--template-id
list-vpcs查询 VPC 列表
list-subnets查询子网列表--vpc-id
get-price查询实例价格多个配置参数

命令行参数

参数说明默认值
action操作类型(必需)-
--region / -r火山引擎地域 IDcn-beijing
--instance-id / -i实例 ID
--page-number分页页码1
--page-size每页记录数10
--output / -o输出格式(json/table)json

输出格式

脚本会将查询信息输出到 stderr,将结果输出到 stdout,便于分离日志和结果:

[操作] list-instances
[地域] cn-beijing
============================================================
[查询结果]
<实际结果内容>

常见使用场景

1. 查看所有实例

uv run ./scripts/call_rds_mysql.py list-instances

2. 查看实例详情

uv run ./scripts/call_rds_mysql.py describe-instance --instance-id mysql-xxx

3. 查看实例的数据库

uv run ./scripts/call_rds_mysql.py list-databases --instance-id mysql-xxx

4. 查看实例的账号

uv run ./scripts/call_rds_mysql.py list-accounts --instance-id mysql-xxx

5. 查看实例参数配置

uv run ./scripts/call_rds_mysql.py list-parameters --instance-id mysql-xxx

6. 创建实例前查询网络信息

# 先查询 VPC
uv run ./scripts/call_rds_mysql.py list-vpcs

# 再查询子网
uv run ./scripts/call_rds_mysql.py list-subnets --vpc-id vpc-xxx --zone-id cn-beijing-a

环境变量配置

1. 获取火山引擎访问凭证:参考 用户指南 获取 AK/SK

2. 配置以下环境变量:

export VOLCENGINE_ACCESS_KEY="your-access-key"
export VOLCENGINE_SECRET_KEY="your-secret-key"
export VOLCENGINE_REGION="cn-beijing"  # 可选,默认 cn-beijing

Related skills

Databasesdatabases

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.