Better Auth MCP Server

generate_migration_plan

Create step-by-step migration plan from existing auth to Better-Auth

Input Schema

NameRequiredDescriptionDefault
currentAuthTypeYesCurrent authentication system type
projectPathYesPath 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" }