MySQL Integration
Access your MySQL databases directly in your workflow.
Overview
The MySQL integration allows your AI to interact directly with your MySQL databases, enabling you to execute SQL queries and check connection status—all without leaving your AI interface.
Before using MySQL tools, you need to connect your MySQL database through the Skeet dashboard.
Authentication
To use MySQL with Skeet, you first need to authenticate:
- Connect your MySQL database in the Skeet dashboard
- Ensure your AI is connected to Skeet with your MCP key
- Verify your connection:
List my skeet integrations
Executing SQL Queries
Execute SQL queries on your MySQL database directly from your AI interface. You can run SELECT, INSERT, UPDATE, DELETE, and other SQL operations.
Execute MySQL query: SELECT * FROM users LIMIT 10
The AI will use the mysql_execute_query
tool with the following parameters:
{
"sql": "The SQL query to execute",
"params": ["Parameters for the query (if using ? placeholders)"]
}
Using parameterized queries with placeholders (?) is recommended to prevent SQL injection attacks.
Checking Connection Status
Verify that your MySQL connection is working properly.
Check my MySQL connection status
The AI will use the mysql_get_connection_status
tool, which doesn't require any parameters.
What's next?
Now that you've connected MySQL, explore other database integrations to make your AI even more powerful.