analyze_project
Identify project structure and dependencies to determine optimal authentication setup using the Better Auth MCP Server for secure, multi-protocol credential management.
Instructions
Analyze project structure and dependencies to recommend Better-Auth setup approach
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectPath | Yes | Path to the project root |
Implementation Reference
- src/index.ts:205-215 (handler)Handler for the analyze_project tool: extracts projectPath from arguments, logs the analysis start, and returns a text content response indicating completion (placeholder implementation).case "analyze_project": { const { projectPath } = request.params.arguments as { projectPath: string }; logger.info(`Analyzing project at ${projectPath}`); // Implementation would analyze package.json, framework usage, etc. return { content: [{ type: "text", text: `Project analysis complete for ${projectPath}` }] }; }
- src/index.ts:60-73 (registration)Tool registration in ListToolsRequestSchema handler: defines name, description, and input schema for analyze_project (schema included).{ name: "analyze_project", description: "Analyze project structure and dependencies to recommend Better-Auth setup approach", inputSchema: { type: "object", properties: { projectPath: { type: "string", description: "Path to the project root" } }, required: ["projectPath"] } },