podbc_describe_table
Retrieve table definitions, including column names, data types, and keys, from any SQLAlchemy-accessible DBMS using the MCP server's pyodbc connectivity.
Instructions
Retrieve and return a dictionary containing the definition of a table, including column names, data types, nullable, autoincrement, primary key, and foreign keys.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Schema | Yes | ||
table | Yes | ||
url | No |
Input Schema (JSON Schema)
{
"properties": {
"Schema": {
"title": "Schema",
"type": "string"
},
"table": {
"title": "Table",
"type": "string"
},
"url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Url"
}
},
"required": [
"Schema",
"table"
],
"title": "podbc_describe_tableArguments",
"type": "object"
}