get_tables
Retrieve a list of tables from SQL databases (Postgres, MySQL, SQLite) using a connection string to manage and analyze database structures efficiently.
Instructions
Get list of table in database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connection_string | Yes | ||
db_type | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"connection_string": {
"type": "string"
},
"db_type": {
"enum": [
"postgres",
"mysql",
"sqlite"
],
"type": "string"
}
},
"required": [
"db_type",
"connection_string"
],
"type": "object"
}