get_table_name
Retrieve database table names by searching with their Chinese descriptions using the mysql_mcp_server tool.
Instructions
根据表中文名搜索数据库中对应的表名
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | 要搜索的表中文名 |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"description": "要搜索的表中文名",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}