Agent skill
relational-database-mcp-cloudbase
This is the required documentation for agents operating on the CloudBase Relational Database through MCP. It defines the canonical SQL management flow with `querySqlDatabase`, `manageSqlDatabase`, `readSecurityRule`, and `writeSecurityRule`, including MySQL provisioning, destroy flow, async status checks, safe query execution, schema initialization, and security rule updates.
Install this agent skill to your Project
npx add-skill https://github.com/TencentCloudBase/CloudBase-MCP/tree/main/config/.claude/skills/relational-database-tool
SKILL.md
Activation Contract
Use this first when
- The agent must inspect SQL data, execute SQL statements, provision or destroy MySQL, initialize table structure, or manage table security rules through MCP tools.
Read before writing code if
- The task includes
querySqlDatabase,manageSqlDatabase,readSecurityRule, orwriteSecurityRule.
Then also read
- Web application integration ->
../relational-database-web/SKILL.md - Raw HTTP database access ->
../http-api/SKILL.md
Do NOT use for
- Frontend or backend application code that should use SDKs instead of MCP operations.
Common mistakes / gotchas
- Initializing SDKs in an MCP management flow.
- Running write SQL or DDL before checking whether MySQL is provisioned and ready.
- Treating document database tasks as MySQL management tasks.
- Skipping
_openidand security-rule review after creating new SQL tables. - Destroying MySQL without explicit confirmation or without checking whether the environment still needs the instance.
When to use this skill
Use this skill when an agent needs to operate on CloudBase Relational Database via MCP tools, for example:
- Inspecting or querying SQL data
- Provisioning MySQL for an environment
- Destroying MySQL for an environment
- Polling MySQL provisioning status
- Modifying data or schema (INSERT/UPDATE/DELETE/DDL)
- Initializing tables and indexes after MySQL is ready
- Reading or changing table security rules
Do NOT use this skill for:
- Building Web or Node.js applications that talk to CloudBase Relational Database directly through SDKs
- Auth flows or user identity management
How to use this skill (for a coding agent)
-
Recognize MCP context
- If you can call tools like
querySqlDatabase,manageSqlDatabase,readSecurityRule,writeSecurityRule, you are in MCP context. - In this context, never initialize SDKs for CloudBase Relational Database; use MCP tools instead.
- If you can call tools like
-
Pick the right tool for the job
- Read-only SQL and provisioning status checks ->
querySqlDatabase - MySQL provisioning, MySQL destruction, write SQL, DDL, schema initialization ->
manageSqlDatabase - Inspect rules ->
readSecurityRule - Change rules ->
writeSecurityRule
- Read-only SQL and provisioning status checks ->
-
Always be explicit about safety
- Before destructive operations (DELETE, DROP, etc.), summarize what you are about to run and why.
- Prefer
querySqlDatabase(action="getInstanceInfo")or a read-only SQL check before writes. - Provisioning or destroying MySQL requires explicit confirmation because both actions have environment-level impact.
Available MCP tools (CloudBase Relational Database)
These tools are the supported way to interact with CloudBase Relational Database via MCP:
1. querySqlDatabase
- Purpose: Query SQL data and provisioning state.
- Use for:
- Running
SELECTand other read-only SQL queries withaction="runQuery" - Checking whether MySQL already exists with
action="getInstanceInfo" - Inspecting asynchronous provisioning progress with
action="describeCreateResult"oraction="describeTaskStatus"
- Running
Example flow:
{
"action": "runQuery",
"sql": "SELECT id, email FROM users ORDER BY created_at DESC LIMIT 50"
}
2. manageSqlDatabase
- Purpose: Manage SQL lifecycle and execute mutating SQL.
- Use for:
- Provisioning MySQL with
action="provisionMySQL" - Destroying MySQL with
action="destroyMySQL" - Executing
INSERT,UPDATE,DELETE,CREATE TABLE,ALTER TABLE,DROP TABLEwithaction="runStatement" - Initializing tables and indexes with
action="initializeSchema"
- Provisioning MySQL with
Important: When creating a new table, you must include the _openid column for per-user access control:
_openid VARCHAR(64) DEFAULT '' NOT NULL
Note: when a user is logged in, _openid is automatically populated by the server from the authenticated session. Do not manually fill it in normal inserts.
Before calling this tool, confirm:
- The current environment has a ready MySQL instance, or you have just provisioned one.
- The target tables and conditions are correct.
- You have run a corresponding read-only query when appropriate.
When destroying MySQL, confirm:
- The current environment really should lose the SQL instance.
- You have explicit confirmation for the destructive action.
- You are prepared to query
describeTaskStatusafterward to inspect the destroy result.
3. readSecurityRule
- Purpose: Read security rules for a given SQL table.
- Use for:
- Understanding who can read/write a table
- Auditing permissions on sensitive tables
4. writeSecurityRule
- Purpose: Set or update security rules for a given SQL table.
- Use for:
- Hardening access to sensitive data
- Opening up read access while restricting writes
- Applying custom rules when needed
Recommended lifecycle flow
Scenario 1: MySQL is not provisioned yet
- Call
querySqlDatabase(action="getInstanceInfo"). - If no instance exists, call
manageSqlDatabase(action="provisionMySQL", confirm=true). - Poll provisioning status with:
querySqlDatabase(action="describeCreateResult")querySqlDatabase(action="describeTaskStatus")
- Only continue when the returned lifecycle status is
READY. - For MySQL provisioning, prefer
describeCreateResult; reservedescribeTaskStatusfor destroy flows whose task response carriesTaskName.
Scenario 2: Safely inspect data in a table
- Use
querySqlDatabase(action="runQuery")with a limitedSELECT. - Include
LIMITand relevant filters. - Review the result set and confirm it matches expectations before any write operation.
Scenario 3: Apply schema initialization after provisioning
- Confirm MySQL is ready.
- Prepare ordered DDL statements.
- Run them through
manageSqlDatabase(action="initializeSchema"). - After creating tables, verify security rules with
readSecurityRuleorwriteSecurityRule.
Scenario 4: Execute a targeted write or DDL change
- Use
querySqlDatabase(action="runQuery")to inspect current data or schema if needed. - Run the mutation once with
manageSqlDatabase(action="runStatement"). - Validate with another read-only query or by checking security rules.
Scenario 5: Destroy MySQL when the environment no longer needs it
- Use
querySqlDatabase(action="getInstanceInfo")to confirm the current environment still has a SQL instance. - Call
manageSqlDatabase(action="destroyMySQL", confirm=true). - Query
querySqlDatabase(action="describeTaskStatus")until the destroy task completes or fails. - If the task succeeds, optionally call
querySqlDatabase(action="getInstanceInfo")to confirm the instance no longer exists. - If the task fails, treat the returned error as the terminal result and let the caller decide whether to retry.
Key principle: MCP tools vs SDKs
-
MCP tools are for agent operations and database management:
- Provision MySQL.
- Destroy MySQL.
- Poll lifecycle state.
- Run ad-hoc SQL.
- Inspect and change security rules.
- Do not depend on application auth state.
-
SDKs are for application code:
- Frontend Web apps -> Web Relational Database skill.
- Backend Node apps -> Node Relational Database quickstart.
When working as an MCP agent, always prefer these MCP tools for CloudBase Relational Database, and avoid mixing them with SDK initialization in the same flow.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
cloudbase
Essential CloudBase (TCB, Tencent CloudBase, 云开发, 微信云开发) development guidelines. MUST read when working with CloudBase projects, developing web apps, mini programs, backend services, fullstack development, static deployment, cloud functions, mysql/nosql database, authentication, cloud storage, web search or AI(LLM streaming) using CloudBase platform. Great supabase alternative.
skill-authoring
Design, improve, and evaluate reusable agent skills with high-quality SKILL.md files, precise trigger descriptions, progressive disclosure, and testable behavior. This skill should be used when users ask to create a new skill, rewrite or review an existing skill, audit a skill collection such as `config/source/skills` for redundancy or overlap, improve skill trigger quality, organize skill references, or evaluate whether a skill should trigger and behave correctly.
git-workflows
Reusable git delivery workflows derived from local slash commands (commit, push, PR, release notes, and GitHub Actions failure triage with worktree-based fixes).
codebase-audit
Perform a full codebase review, categorize findings by severity, file GitHub issues, then fix each issue in an isolated git worktree and submit PRs. Use this skill when the user asks to audit the codebase, do a comprehensive code review, find and fix security/quality/reliability issues, or run a proactive health check across the entire repository.
manage-local-skills
Analyze, standardize, validate, and sync locally maintained skills into agent skill directories with a `skills` CLI-aligned workflow. Use this skill when Codex needs to turn ad-hoc prompt or rules folders into reusable `SKILL.md`-based skills, install or sync one or more local skills from `./skills` into Claude, Cursor, CodeBuddy, Codex, or similar agent directories, or manage local skill path mappings and symlink or copy installation behavior.
planning-workflows
Spec and no-spec planning workflows derived from local slash commands (requirements, design, tasks).
Didn't find tool you were looking for?