Explore Configurations

Browse sample Claude Code setups for popular tech stacks. Each includes MCPs, project rules, and a ready-to-use CLAUDE.md file.

Next.js SaaS Starter

Full-stack SaaS template with authentication, payments, and database.

Next.js 14SupabaseStripeTypeScript
MCPs Included
filesystemmemorygithubpostgrescontext7
CLAUDE.md preview
# Next.js SaaS Project

## Tech Stack
- Framework: Next.js 14 (App Router)
- Language: TypeScript (strict mode)
- Database: Supabase (PostgreSQL)
- Auth: Supabase Auth
- Payments: Stripe
- Deployment: Vercel

## Coding Standards
- Use Server Components by default
- Client Components only when needed (interactivity)
- Tailwind CSS for styling, no CSS modules
- All API routes in app/api/
- Use Zod for validation

## Project Structure
app/
  (auth)/        # Auth routes (login, signup)
  (dashboard)/   # Protected routes
  api/           # API routes
components/      # Shared components
lib/             # Utilities, Supabase client
...

FastAPI ML Pipeline

Python backend for machine learning with data pipelines and containerization.

FastAPIPythonPostgreSQLDocker
MCPs Included
filesystemmemorypostgrescontext7sequential-thinking
CLAUDE.md preview
# FastAPI ML Pipeline

## Tech Stack
- Framework: FastAPI 0.100+
- Language: Python 3.11
- Database: PostgreSQL 15
- ORM: SQLAlchemy 2.0
- Containers: Docker, docker-compose

## Coding Standards
- Type hints on all functions
- Pydantic models for request/response
- Async endpoints where beneficial
- Alembic for migrations
- pytest for testing

## Project Structure
app/
  api/           # Route handlers
  models/        # SQLAlchemy models
  schemas/       # Pydantic schemas
  services/      # Business logic
  ml/            # ML models and pipelines
tests/           # Test files
...

React Dashboard

Modern React dashboard with TypeScript, state management, and CI/CD.

React 18TypeScriptZustandGitHub Actions
MCPs Included
filesystemmemorygithubfetchcontext7
CLAUDE.md preview
# React Dashboard

## Tech Stack
- Framework: React 18 + Vite
- Language: TypeScript (strict)
- State: Zustand
- Styling: Tailwind CSS
- Testing: Vitest + Testing Library
- CI/CD: GitHub Actions

## Coding Standards
- Functional components only
- Custom hooks for shared logic
- Zustand stores in /stores
- Component co-location (styles, tests)
- Named exports preferred

## Project Structure
src/
  components/    # Reusable components
  features/      # Feature modules
  hooks/         # Custom hooks
  stores/        # Zustand stores
  utils/         # Helper functions
...

Express API

Node.js REST API with authentication, database, and documentation.

Express.jsNode.jsPostgreSQLJWT
MCPs Included
filesystemmemorypostgresgithubfetch
CLAUDE.md preview
# Express API

## Tech Stack
- Runtime: Node.js 20 LTS
- Framework: Express.js 4.x
- Language: TypeScript
- Database: PostgreSQL
- Auth: JWT + bcrypt
- Docs: OpenAPI/Swagger

## Coding Standards
- Controllers handle HTTP only
- Services contain business logic
- Repository pattern for data access
- Middleware for cross-cutting concerns
- Express-validator for input validation

## Project Structure
src/
  controllers/   # Route handlers
  services/      # Business logic
  repositories/  # Data access
  middleware/    # Auth, logging, errors
  routes/        # Route definitions
  types/         # TypeScript types
...

Need a custom configuration?

Our AI Genie will analyze your specific stack and generate a tailored setup in minutes.

Start Custom Setup