mysql
SolidQuery the connected MySQL/MariaDB database with the mysql client. Use when the user asks about their database — tables, rows, schema, or to run SQL against MySQL.
API & Backend 22 stars
3 forks Updated today MIT
Install
Quality Score: 79/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# MySQL (connected)
The connection is in the env (`$MYSQL_HOST`, `$MYSQL_PORT`, `$MYSQL_USER`, `$MYSQL_PASSWORD`, `$MYSQL_DATABASE`).
Pass the password via `MYSQL_PWD` and the rest as flags. The client is preinstalled once the sandbox has been
rebuilt for this capability (Environment card).
- List tables: `MYSQL_PWD="$MYSQL_PASSWORD" mysql -h"$MYSQL_HOST" -P"$MYSQL_PORT" -u"$MYSQL_USER" "$MYSQL_DATABASE" -e "SHOW TABLES;"`
- Describe a table: `MYSQL_PWD="$MYSQL_PASSWORD" mysql -h"$MYSQL_HOST" -P"$MYSQL_PORT" -u"$MYSQL_USER" "$MYSQL_DATABASE" -e "DESCRIBE <table>;"`
- Run a query: `MYSQL_PWD="$MYSQL_PASSWORD" mysql -h"$MYSQL_HOST" -P"$MYSQL_PORT" -u"$MYSQL_USER" "$MYSQL_DATABASE" -e "SELECT * FROM <table> LIMIT 20;"`
- Scriptable output (tab-separated, no header): add `-N -B`, e.g. `MYSQL_PWD="$MYSQL_PASSWORD" mysql -N -B -h"$MYSQL_HOST" -P"$MYSQL_PORT" -u"$MYSQL_USER" "$MYSQL_DATABASE" -e "SELECT count(*) FROM <table>;"`
- List databases: `MYSQL_PWD="$MYSQL_PASSWORD" mysql -h"$MYSQL_HOST" -P"$MYSQL_PORT" -u"$MYSQL_USER" -e "SHOW DATABASES;"`
Notes: this is a read-write connection — the connected user's grants bound what you can do. Prefer a `WHERE`
on every `UPDATE`/`DELETE`.
Details
- Author
- intentic
- Repository
- intentic/intentic
- Created
- 2 weeks ago
- Last Updated
- today
- Language
- TypeScript
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
API & Backend Listed
mysql
Manage MySQL databases via the mysql CLI. Use when querying, inspecting schema, or managing MySQL databases.
2 Updated today
fworks-tech API & Backend Listed
db-mysql
Specialized assistant for exploring and querying a MySQL/MariaDB database read-only in Otto's DB Explorer — dialect idioms, safe schema discovery, EXPLAIN-driven performance, and producing a single final query.
0 Updated yesterday
itzikiusa API & Backend Solid
postgres
Query the connected PostgreSQL database with psql. Use when the user asks about their database — tables, rows, schema, or to run SQL against Postgres.
22 Updated today
intentic