What problem does it solve?
This Skill provides a Docker-based MySQL client to execute SQL queries against MySQL databases from within AI-driven workflows, enabling automated data access without managing local clients.
Core Features & Use Cases
- Docker-based CLI: Run queries against local or remote MySQL servers inside a container.
- Ad hoc queries & schema exploration: Create databases, list tables, describe schemas, and run SELECT/INSERT/UPDATE statements.
- Operational automation: Export data, monitor server status, and manage connections in automated pipelines.
Quick Start
Install the skill with skill install ./examples/docker-runtime-skills/mysql-skill
Run a simple query: skill run mysql -- -h localhost -u myuser -e "SELECT 1" mydb
Use an environment variable for the password: MYSQL_PASSWORD=secret skill run mysql -- -h localhost -u myuser -e "SHOW DATABASES" mydb