relational-database-mcp-cloudbase

Manage CloudBase MySQL instances, SQL queries, schema, and security rules via MCP tools.

2|1|Updated Apr 3, 2026
One-click install
npx skills add https://github.com/lxb031018/qintu --skill relational-database-mcp-cloudbase-lxb031018
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: relational-database-mcp-cloudbase
Source: https://github.com/lxb031018/qintu/tree/main/.codebuddy/skills/relational-database-tool
Command: npx skills add https://github.com/lxb031018/qintu --skill relational-database-mcp-cloudbase-lxb031018

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill helps an agent provision, manage, query, and secure a CloudBase Relational Database (MySQL) through MCP tools without risking unsafe write/DDL operations or skipping required lifecycle checks.

Core Features & Use Cases

  • SQL inspection and read-only querying: Run controlled SELECT queries and check current provisioning state.
  • MySQL lifecycle management: Provision or destroy MySQL, poll async status, and initialize schema after readiness.
  • Security rule hardening: Read and update per-table security rules to align access permissions with the intended use case.

Quick Start

Use the relational-database-mcp-cloudbase skill to provision MySQL (if missing) and initialize required tables and security rules after verifying the instance is READY.

Frequently Asked Questions about relational-database-mcp-cloudbase

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I provision and initialize a CloudBase MySQL database for an agent workflow?

To provision CloudBase MySQL, use manageSqlDatabase to handle the instance lifecycle and poll its async status. Once readiness is verified, initialize required tables, indexes, and security rules to complete the schema setup.

How does safe SQL execution work for CloudBase relational databases?

Safe SQL execution separates read and write operations by using querySqlDatabase for controlled read-only SELECT checks, while manageSqlDatabase handles mutating DDL and DML operations to prevent unsafe writes.

Can I update table access permissions for a CloudBase MySQL instance via MCP?

Yes, you can update table access permissions for CloudBase MySQL via MCP. Use readSecurityRule to audit current per-table permissions, then apply writeSecurityRule to harden access and align it with your use case.

What's the best way to run read-only checks before mutating a CloudBase MySQL schema?

The best way to run read-only checks before mutating a CloudBase MySQL schema is to execute controlled SELECT queries via querySqlDatabase. This verifies current provisioning state and data before applying DDL or DML changes.

Do I need MCP tools to manage CloudBase MySQL security rules and SQL provisioning?

Yes, MCP tools are required to manage CloudBase MySQL safely. They enforce required lifecycle checks for provisioning and ensure security rule updates and SQL mutations are executed without risking unsafe write operations.