You need to add the namespace as well:
product.metafields.<namespace>.mpn
The standard way to access product metafields is:
product.metafields.<namespace>.<key>
or
product.metafields.<namespace>['<key>']
Example:
{% assign instructions = product.metafields.instructions %}
{% assign key = 'Wash' %}
<ul>
<li>Wash: {{ instructions[key] }}</li>
<li>Wash: {{ instructions['Wash'] }}</li>
<li>Wash: {{ instructions.Wash }}</li>
</ul>
More here
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…