list_tables
Retrieve a comprehensive list of all tables within a specified database or schema using the DataPilot MCP Server. Simplify database exploration and organization with this essential tool.
Instructions
List all tables in a database/schema
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | No | ||
schema | No |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Database"
},
"schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Schema"
}
},
"type": "object"
}