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`, `queryPermissions`, and `managePermissions`, including MySQL provisioning, destroy flow, async status checks, safe query execution, schema initialization, and permission updates.
Installation
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
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`, `queryPermissions`, and `managePermissions`, including MySQL provisioning, destroy flow, async status checks, safe query execution, schema initialization, and permission updates.
version
2.23.3
alwaysApply
false
Standalone Install Note
If this environment only installed the current skill, start from the CloudBase main entry and use the published cloudbase/references/... paths for sibling skills.
CloudBase main entry: https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/SKILL.md
Current skill raw source: https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/relational-database-tool/SKILL.md
Keep local references/... paths for files that ship with the current skill directory. When this file points to a sibling skill such as auth-tool or web-development, use the standalone fallback URL shown next to that reference.
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, queryPermissions, or managePermissions.
Then also read
Web application integration -> ../relational-database-web/SKILL.md (standalone fallback: https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/relational-database-web/SKILL.md)
Raw HTTP database access -> ../http-api/SKILL.md (standalone fallback: https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/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 _openid and permissions 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 permissions
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, queryPermissions, managePermissions, you are in MCP context.
In this context, never initialize SDKs for CloudBase Relational Database; use MCP tools instead.
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
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 SELECT and other read-only SQL queries with action="runQuery"
Checking whether MySQL already exists with action="getInstanceInfo"
Inspecting asynchronous provisioning progress with action="describeCreateResult" or action="describeTaskStatus"
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 TABLE with action="runStatement"
Initializing tables and indexes with action="initializeSchema"
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 describeTaskStatus afterward to inspect the destroy result.
3. queryPermissions
Purpose: Read permission configuration for a given SQL table.
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.