switch_database
Switch database connections within CockroachDB MCP Server by specifying the target database name to manage, monitor, or query data effectively.
Instructions
Switch the connection to a different database.
Args: database (str): Name of the database to switch to.
Returns: A success message or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | Yes |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"title": "Database",
"type": "string"
}
},
"required": [
"database"
],
"title": "switch_databaseArguments",
"type": "object"
}