connect_database
Establish a connection to the rekordbox database by specifying a directory path or enabling auto-detection. Retrieve connection status for accessing DJ tracks, playlists, and session history.
Instructions
Connect to the rekordbox database.
Args: database_path: Optional path to database directory. If not provided, auto-detection is used.
Returns: Connection status message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database_path | No |
Input Schema (JSON Schema)
{
"properties": {
"database_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Database Path"
}
},
"type": "object"
}