get-table-info
Retrieve detailed information about a specific table in a PostGIS database using the Model Context Protocol (MCP). Specify the table name to access schema, structure, and metadata.
Instructions
Belirli bir tablo hakkında detaylı bilgi al
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table_name | Yes | Tablo adı |
Input Schema (JSON Schema)
{
"properties": {
"table_name": {
"description": "Tablo adı",
"type": "string"
}
},
"required": [
"table_name"
],
"type": "object"
}