Better Auth MCP Server

setup_better_auth

Install and configure Better-Auth in the project

Input Schema

NameRequiredDescriptionDefault
configYesBetter-Auth configuration options
projectPathYesPath 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" }