Mithilesh Addhyan Kendram, 7th Block, Adugodi, Bengaluru, Karnataka 560095, India
Mon–Sat: 10:00 AM – 7:00 PM
Bengaluru, India • Est. 2022
MAK blends enterprise-grade engineering with world-class training. We ship production-ready AI applications, modern web platforms, and upskill teams for the intelligence era.
MAK • Intelligence Console
MAK AI — deploy chatbots, computer vision, and analytics with secure, governed workflows.
ISO 27001 Aligned
What we do
End-to-end product engineering, upskilling, and AI integration delivered with enterprise rigor.
Web Development
Production-grade Next.js, Node, and cloud infrastructure. Pixel-perfect UI, performance budgets, and secure CI/CD.
Headless CMS & Commerce
Edge rendering & SEO
Observability & SRE
Internship Training
Cohort-based, mentor-led programs with capstone projects, code reviews, and placement assistance.
Full-stack & Data Tracks
Git, CI/CD, Testing
Portfolio & Interview Prep
AI Solutions
From POC to production: chatbots, computer vision, analytics, and workflow automation with governance.
RAG & Enterprise Chatbots
Vision & OCR Pipelines
Analytics & MLOps
Managed & professional services
Resilient networks, hardened security, and cloud operations with clear SLAs and board-ready reporting.
Request a Scoping Call →
Network Support
Cybersecurity
Cloud & DevOps
Backup & DR
24×7 NOC
Endpoint MDM
Compliance (ISO, SOC)
SIEM & SOC
Security posture
Threat detection with automated containment and forensic timelines.
Reliability
Multi-AZ deployments with blue/green releases and chaos drills.
Cost control
Rightsizing, savings plans, and showback/chargeback for teams.
Industry-aligned curriculum
Cohort-based programs with projects, mentorship, and career support. Data is dynamically rendered from MySQL (see Notes for integration).
Seats are limited per cohort
Popular
Full-Stack Web Development with Next.js
Level: Intermediate • SQL • API design • Auth • Deploy
App Router, RSC, Server Actions
Prisma + MySQL (PlanetScale)
Vercel CI/CD, Edge functions
Data Engineering & Analytics
Level: Beginner→Advanced • SQL • Warehousing • BI
Advanced SQL, window functions
Data modeling, ETL/ELT
Dashboards & storytelling
Learners 310+
Enroll Now →
New
Applied AI & LLM Engineering
Level: Intermediate • RAG • Eval • Safety
RAG pipelines & vector DBs
Prompting, evals, guardrails
Deployment & monitoring
Learners 260+
Enroll Now →
Cloud & DevOps with AWS
Level: All • IaC • CI/CD • Observability
VPC, IAM, EKS/ECS
Terraform, GitHub Actions
CloudWatch, X-Ray, cost mgmt
Learners 190+
Enroll Now →
Cybersecurity Fundamentals
Level: Beginner • NIST • SOC basics
Threat modeling, EDR, SIEM
AppSec & secure coding
Incident response drills
Learners 210+
Enroll Now →
Product Analytics with SQL & BI
Level: Beginner→Advanced • Metrics • Dashboards
Funnels, cohorts, retention
SQL for analysts, modeling
Storytelling with data
Learners 180+
Enroll Now →
Enrollment
Please share your details. We’ll confirm your seat via email/WhatsApp.
Thank you! Your enrollment request has been received. Our advisor will contact you within 24 hours.
Production AI, not just demos
Templates, patterns, and accelerators for rapid, secure delivery of intelligent systems.
Chatbots & Assistants
Domain-aware copilots with retrieval, tools, evals, and safety guardrails.
RAG
Function Calling
Eval Harness
Computer Vision
Detection, segmentation, OCR, and defect classification with edge-ready pipelines.
YOLO ONNX Triton
Natural Language Processing
NER, classification, summarization, and multilingual pipelines with clear evals.
Transformers spaCy LangChain
Analytics & Forecasting
Time series, uplift modeling, and decision support dashboards for measurable ROI.
Feature Store Prophet Causal
Process Automation
Workflow agents, RPA-style automations, and human-in-the-loop safety.
n8n Airflow Temporal
Model Ops & Governance
Registries, lineage, evals, monitoring, and responsible AI by default.
MLOps DVC MLflow
Start with a 5-day AI sprint: success metrics, data plan, and a working demo.
Book an AI Sprint →
MAK
AI Tech Agency • E-Learning
Engineering intelligence into every product. From strategy to deployment, we help teams build durable advantage with AI and data.
Address
Indiranagar, Bengaluru, Karnataka 560038, India
Working Hours
Mon – Fri
10:00 – 19:00
Saturday
10:00 – 17:00
Sunday
Closed
IST (Asia/Kolkata)
© Mithilesh Addhyan Kendram (MAK). All rights reserved.
// This file is Prisma schema (not JSON). Keep as .prisma file in your repo.
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "mysql"
url = env("DATABASE_URL")
}
model Course {
id String @id @default(cuid())
title String
duration String // e.g., "12 Weeks"
level String // e.g., "Intermediate"
students Int @default(0)
bullets String // JSON stringified array of highlights
isPopular Boolean @default(false)
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}
model CourseEnrollment {
id String @id @default(cuid())
name String
email String
phone String
courseName String
createdAt DateTime @default(now())
}
model ContactSubmission {
id String @id @default(now())
name String
email String
phone String?
message String
createdAt DateTime @default(now())
}
# PlanetScale / MySQL
DATABASE_URL="mysql://USER:PASSWORD@HOST/DATABASE?sslaccept=strict"
# Admin protection for /api/leads
ADMIN_SECRET="replace-with-strong-secret"
# (Optional) Prisma
PRISMA_CLIENT_ENGINE_TYPE="library"
# Mithilesh Addhyan Kendram (MAK) — AI Tech Agency & E-Learning
Dark navy (#002855) + gold (#D4AF37) luxury theme. Montserrat headings, Inter body.
## Stack
- Next.js 14 (App Router) + Tailwind CSS
- Prisma ORM + MySQL (PlanetScale)
- Lucide icons
- Deploy on Vercel
## Setup
1) Copy `.env.local` and set `DATABASE_URL` and `ADMIN_SECRET`.
2) Install deps: `npm i`
3) Migrate: `npm run db:push` (or `prisma migrate dev`)
4) Seed courses (optional) using Prisma Studio: `npm run db:studio`
5) Dev: `npm run dev`
## API
- `POST /api/contact` → `{ name, email, phone?, message }`
- `POST /api/enroll` → `{ name, email, phone, courseName }`
- `GET /api/courses` → list courses
- `GET /api/leads` → header `x-admin-secret: $ADMIN_SECRET`
## Notes
- Course bullets are stored as JSON string in `Course.bullets`.
- Replace demo cards in `CoursesGrid` with data from `/api/courses`.
- Wire forms to the API endpoints shown above.