If you've ever plugged a 256GB Android phone into a Mac and tried to browse files, you know the pain. Android File Transfer hangs. OpenMTP crashes. MacDroid takes five minutes to list /DCIM . The root cause is MTP. Media Transfer Protocol is a synchronous, single-threaded protocol from the USB-IF spec, designed when phones had 4GB of storage and 200 photos. It was never built for a device with 400,000 files across nested directory trees. Every single folder listing is a blocking round-trip over USB, and the protocol has no concept of batch reads or parallel traversal. I got tired of it, so I built something that bypasses MTP entirely. The Idea What if I could run native code directly on the phone's filesystem , perform a POSIX-level recursive traversal (the same way du or find works on Linux), and pipe the results back to my Mac over a raw TCP socket? No MTP. No MediaStore queries. No Scoped Storage restrictions. Just opendir() , readdir() , lstat() , streamed over a socket.…