There are all sorts of different interfaces to memcached, but you don't need any of them to make requests from the command line, because its protocol is so simple. Try this, assuming it's running on the usual port on the local machine:
PLAIN TEXT CODE:
- echo stats | nc 127.0.0.1 11211
- STAT pid 22020
- STAT uptime 3689364
- STAT time 1227753109
- STAT version 1.2.5
- STAT pointer_size 64
- STAT rusage_user 4543.071348
- STAT rusage_system 8568.293421
- STAT curr_items 139897
- STAT total_items 51710845
- STAT bytes 360147055
- STAT curr_connections 40
- STAT total_connections 66762
- STAT connection_structures 327
- STAT cmd_get 319992973
- STAT cmd_set …