MCP tool · Databases
drop_database
Permanently drop a MySQL database and every table in it.
drop_database
DestructiveIdempotent
Description
Permanently drop a MySQL database and every table in it. This is irreversible and does not drop on this call: it confirms the database exists, then returns {status:"confirmation_required", confirmationUrl, …}. Show the human the confirmationUrl to approve in the client area; do not approve it yourself. Then poll get_pending_action.
Input
| Name | Type | Description |
|---|---|---|
input
required
|
string |
A domain, email address, website URL, numeric service id, or hosting-account username the customer actually owns. Resolved to the owning account automatically; the resolved target is echoed back in the response.
|
database
required
|
string |
The prefixed database name to drop, e.g. user_shop.
|
attempt_key
|
string | An idempotency key you choose. Reusing it within an hour returns the same held drop. |