The web does not say that the library takes RSA keys in PKCS #1 format. That wouldn't make sense. Instead, it produces ciphertext in PKCS #1 format.
What do you want to do with the RSA library? Decrypt messages that were encrypted with the JavaScript library? You will need the private key for that. Why are you "finding" keys? You should generate your own key pair; I recommend using OpenSSL for that.
Okay, it looks like the M2Crypto library has a way to reconstruct a public key. You need to know the public exponent, e (often 65337 for RSA keys, but other numbers such as 3 or 17 have been used), and the modulus, n (which is the 512-bit number provided in the question). Note that the docs describe the length-encoded format used for e and n.
Once the public key has been reconstructed, it can be saved into a file and used again later without the hassle of conversion.
