describe_table
Retrieve detailed information about a specific table in the Baidu Cloud Vector Database by specifying its name, enabling efficient data management and analysis within the MCP server environment.
Instructions
Describe table details in the Mochow instance.
Args:
table_name (str): Name of the table to describe.
Returns:
str: A string containing the details of the table.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
table_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"table_name": {
"title": "Table Name",
"type": "string"
}
},
"required": [
"table_name"
],
"title": "describe_tableArguments",
"type": "object"
}