get-field-descriptions
Retrieve stored field descriptions for a specific table in Firebird SQL databases. Input the table name to access metadata, simplifying data analysis and manipulation in MCP Firebird environments.
Instructions
Gets the stored descriptions for fields of a specific table (if they exist).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tableName | Yes | Name of the table to get field descriptions for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"tableName": {
"description": "Name of the table to get field descriptions for",
"minLength": 1,
"type": "string"
}
},
"required": [
"tableName"
],
"type": "object"
}