npx @better-auth/cli generate - Error: mongodb-adapter is not supported.

I am following the installation section and I am on step 5.
When I run npx @better-auth/cli generate I get this response, preparing schema...2025-02-17T14:43:42.642Z ERROR [Better Auth]: mongodb-adapter is not supported.

Should I skip this step? Is this intended or should I open an issue on github?

My current
auth.ts
file looks like this right now.

import { betterAuth } from 'better-auth';
import { mongodbAdapter } from 'better-auth/adapters/mongodb';

import mongoClient from '@/db/mongo-client';

export const auth = betterAuth({
  database: mongodbAdapter(mongoClient.db())
});
Was this page helpful?