describe_table
Retrieve table schema details, including column definitions and constraints, for PostgreSQL databases using the PostgreSQL MCP Server's describe_table tool.
Instructions
Get detailed information about a table's structure, columns, and constraints
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",
"type": "string"
}
},
"required": [
"tableName"
],
"type": "object"
}