drop_database
Remove a specified database from the CockroachDB MCP Server by providing its name. Ensures clean and efficient database management for agentic applications.
Instructions
Drop an existing database.
Args: database_name (str): Name of the database to drop.
Returns: A success message or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"database_name": {
"title": "Database Name",
"type": "string"
}
},
"required": [
"database_name"
],
"title": "drop_databaseArguments",
"type": "object"
}