get_table_schema
Extract the schema and column definitions of a specified table from a MariaDB database using the MariaDB Reader MCP Server for efficient database exploration and analysis.
Instructions
특정 테이블의 스키마(컬럼 정의)를 가져옵니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | Yes | 데이터베이스의 이름입니다. | |
table | Yes | 테이블의 이름입니다. |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"description": "데이터베이스의 이름입니다.",
"type": "string"
},
"table": {
"description": "테이블의 이름입니다.",
"type": "string"
}
},
"required": [
"database",
"table"
],
"type": "object"
}