setup_better_auth
Install and configure enterprise-grade authentication in your project with secure credential handling. Supports multi-protocol auth setup using project path and configuration details for improved security.
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"
}