bibsnarf.el is a nice tool to get BibTeX entries conveniently from Emacs. Even though it seems that it has not been updated since 2007, it still works with mathscinet, but not with arxiv.org. With the following redefinition, bibsnarf works for me with arxiv:
(defun bsn-arxive-url (author title)
(concat "http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?db_key=PRE&"
"&aut_req=YES&aut_logic=AND&author=" (mm-url-form-encode-xwfu author)
"&ttl_req=YES&ttl_logic=AND&title=" (mm-url-form-encode-xwfu title)
"&data_type=BIBTEX"))
It would be very nice to be able to use bibsnarf with the version of mathscinet at MR lookup.

Hi,
I wrote some code for information retrieval from mr-lookup some time ago. Maybe you find some of this helpful as a start.
http://paste.pocoo.org/raw/573962/
Why don’t you propose to include your changes into bibretrive, which looks like to be the “successor” of bibsnarf?
https://github.com/pzorin/bibretrieve
I did not know about bibretrieve, thanks for letting me know! And it seems that searching arxiv.org is possible with bibretrieve.