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.

Authentication

To use MySQL with Skeet, you first need to authenticate:

  1. Connect your MySQL database in the Skeet dashboard
  2. Ensure your AI is connected to Skeet with your MCP key
  3. Verify your connection:
COMMAND
Verify MySQL 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)"]
}

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.

Was this page helpful?