describe_table
Retrieve column details and schema information for a specified table in a database, supporting Snowflake databases via the DataPilot MCP Server.
Instructions
Get detailed information about a table's columns
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | No | ||
schema | No | ||
table_name | Yes |
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"
},
"table_name": {
"title": "Table Name",
"type": "string"
}
},
"required": [
"table_name"
],
"type": "object"
}