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.

