!mysql
Query and manage MySQL databases by specifying connection details like host, database, user, and password. Simplify database operations with structured input for efficient data handling.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connection | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"connection": {
"additionalProperties": false,
"properties": {
"database": {
"type": "string"
},
"host": {
"type": "string"
},
"password": {
"type": "string"
},
"port": {
"type": "number"
},
"user": {
"type": "string"
}
},
"required": [
"host",
"database",
"user",
"password"
],
"type": "object"
}
},
"required": [
"connection"
],
"type": "object"
}