describe-table
Retrieve the schema details (columns, types, etc.) of a specified table in Firebird SQL databases using the MCP Firebird server. Simplifies table structure analysis.
Instructions
Gets the detailed schema (columns, types, etc.) of a specific table.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tableName | Yes | Name of the table to describe |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"tableName": {
"description": "Name of the table to describe",
"minLength": 1,
"type": "string"
}
},
"required": [
"tableName"
],
"type": "object"
}