"매 학습 단위로서의 가장 작은 product". 매 Eric Ries (2011) 가 정의한 MVP 는 매 customer hypothesis 를 매 minimum effort 로 validate 하는 product version. 매 2026 의 MVP 는 매 AI-augmented prototyping (Claude Opus, Replit Agent) 으로 매 days-not-weeks scale.
매 핵심
매 MVP 의 진짜 의미
Minimum: 매 build effort 의 minimization (X feature count).
Viable: 매 real user 의 real job 을 매 end-to-end 수행 가능.
Product: 매 learning vehicle — 매 metric capture 가능해야.
매 MVP 의 X
매 buggy half-product (X — viable 아님).
매 feature-complete v1 (X — minimum 아님).
매 internal demo (X — product 아님, no users).
매 응용
Concierge MVP: 매 manual backend, 매 user 는 magic UX 로 인식.
Wizard-of-Oz: 매 fake automation, 매 human-in-loop.
Landing page: 매 product X, 매 demand signal capture only.
Single-feature: 매 one core job, 매 polished.
💻 패턴
Hypothesis canvas
mvp:hypothesis:"User X will pay $Y for solving Z"riskiest_assumption:"User X actually has problem Z"minimum_test:type:landing_pagesuccess_metric:"100 sign-ups in 7 days"kill_metric:"<10 sign-ups → pivot"
Concierge MVP scaffold
# Fake the backend, learn from real usersfromfastapiimportFastAPIapp=FastAPI()@app.post("/recommend")asyncdefrecommend(user_query:str):# MVP: send query to founder's phoneawaitsms_to_founder(user_query)# Founder manually crafts recommendationresponse=awaitwait_for_founder_reply()return{"recommendation":response}