create_database
Create a new database in Baidu Vector Database MCP Server by specifying a unique database name, enabling organized storage and management of vector data for efficient search operations.
Instructions
Create a database in the Mochow instance.
Args:
database_name (str): Name of the database.
Returns:
str: A message indicating the success of database creation.
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": "create_databaseArguments",
"type": "object"
}