connect
Establish a secure connection to a MySQL database by specifying host, port, user, password, and database details. Simplify database interaction and query execution through structured access.
Instructions
Connect to a MySQL database.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | No | Database name to connect to | |
host | No | Database server hostname or IP address | |
password | No | Database password | |
port | No | Database server port | |
user | No | Database username |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"description": "Database name to connect to",
"type": "string"
},
"host": {
"description": "Database server hostname or IP address",
"type": "string"
},
"password": {
"description": "Database password",
"type": "string"
},
"port": {
"description": "Database server port",
"type": "string"
},
"user": {
"description": "Database username",
"type": "string"
}
},
"type": "object"
}