info
Retrieve detailed information from MySQL databases by specifying the target environment (local, development, staging, production). Facilitates database exploration and data investigation for AI-powered tools.
Instructions
Get information about MySQL databases
Input Schema
Name | Required | Description | Default |
---|---|---|---|
environment | Yes | Target environment to get information from |
Input Schema (JSON Schema)
{
"properties": {
"environment": {
"description": "Target environment to get information from",
"enum": [
"local",
"development",
"staging",
"production"
],
"type": "string"
}
},
"required": [
"environment"
],
"type": "object"
}