drop_vector_index
Remove a vector index from a specified table in the Baidu Vector Database using the MCP server. Requires table and index names to execute.
Instructions
Drop the vector index in the Mochow instance.
Args:
table_name (str): Name of the table.
index_name (str): Name of the vector index to drop.
Returns:
str: A message indicating the success of index drop.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
index_name | Yes | ||
table_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"index_name": {
"title": "Index Name",
"type": "string"
},
"table_name": {
"title": "Table Name",
"type": "string"
}
},
"required": [
"table_name",
"index_name"
],
"title": "drop_vector_indexArguments",
"type": "object"
}