What's the point of Firmata?

Firmata is part of the standard libraries. It is not loaded to the arduinos, but available in the IDE without extra download.

The idea is to use a MIDI-like protocol to remotely control an Arduino. The program on the PC sends something like "NOTE 3 ON", and the
output D3 goes ON. Other controllers allow to use PWM and ADC as well.

Not many people are using it, and prefer to put the intelligence in the Arduino instead of making PC programs.
It's just there (like SD, Ethernet or LiquidCrystal) if you want to use it.