use_database
Switch to a specified database within Baidu Vector Database MCP Server by providing the database name, enabling efficient management and access to vector data for LLM applications.
Instructions
Switch to a different database.
Args:
database_name (str): Name of the database to use.
Returns:
str: A message indicating the success of the database switch.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"database_name": {
"title": "Database Name",
"type": "string"
}
},
"required": [
"database_name"
],
"title": "use_databaseArguments",
"type": "object"
}