hmm, good point. I didn't look at it from that POV.
When I'm trying to scratch an itch, I try to get something 'rough' and then try to add the bells and whistles later on. Mentally, I always think of that 'rough' bit as 'my own MVP' i.e. what are the minimum features I need to build for this tool to solve my problem.
For example I needed a self hosted solution to convert svg images to png. I need a way to specify the image to be converted, code to convert it, and a place to store the output. My first build had a text field where I manually enter the path to the svg file I need to convert, and I hardcoded the output folder. I thought of that as my MVP. When I was sure the code was working and much later on when I had the time, I added a file picker to allow me pick the input file and another file picker for me to specify the output location.