use_database
Switch to a specific MySQL database on MySql MCP server. Provide the database name to establish connection and access data for query execution or management tasks.
Instructions
Switch to a different database.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | Yes | Name of the database to switch to |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"description": "Name of the database to switch to",
"type": "string"
}
},
"required": [
"database"
],
"type": "object"
}