generate_migration_plan
Create a step-by-step migration plan for transitioning from your current authentication system (auth.js or next-auth) to Better Auth MCP Server. Specify the project path and current auth type to initiate the process.
Instructions
Create step-by-step migration plan from existing auth to Better-Auth
Input Schema
Name | Required | Description | Default |
---|---|---|---|
currentAuthType | Yes | Current authentication system type | |
projectPath | Yes | Path to the project root |
Input Schema (JSON Schema)
{
"properties": {
"currentAuthType": {
"description": "Current authentication system type",
"enum": [
"auth.js",
"next-auth"
],
"type": "string"
},
"projectPath": {
"description": "Path to the project root",
"type": "string"
}
},
"required": [
"projectPath",
"currentAuthType"
],
"type": "object"
}