get_database_metadata
Retrieve complete database schema information including all tables, columns, and field types to understand your database structure and relationships.
Instructions
š [SAFE] Get complete metadata for a database including ALL tables, columns, and field types. This is comprehensive and may return large amounts of data. Use this when you need to understand the full database schema. Risk: None - read-only, but returns large payloads.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| databaseId | Yes | The ID of the database |
Input Schema (JSON Schema)
{
"properties": {
"databaseId": {
"description": "The ID of the database",
"minimum": 1,
"type": "integer"
}
},
"required": [
"databaseId"
],
"type": "object"
}