setup_better_auth
Install and configure Better-Auth in your project to integrate enterprise-grade authentication, enabling secure credential management, multi-protocol support, and real-time threat detection.
Instructions
Install and configure Better-Auth in the project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
config | Yes | Better-Auth configuration options | |
projectPath | Yes | Path to the project root |
Input Schema (JSON Schema)
{
"properties": {
"config": {
"description": "Better-Auth configuration options",
"properties": {
"apiKey": {
"type": "string"
},
"environment": {
"type": "string"
},
"projectId": {
"type": "string"
}
},
"required": [
"projectId",
"apiKey"
],
"type": "object"
},
"projectPath": {
"description": "Path to the project root",
"type": "string"
}
},
"required": [
"projectPath",
"config"
],
"type": "object"
}