The YooKassa payment plugin for Medusa has moved to the @gorgo/medusa-payment-yookassa package. Learn why we did it and how to switch to the new version.

The YooKassa payment plugin for Medusa has moved into the medusa-plugins monorepo and is now published as . The plugin's functionality remains unchanged, but its development and support processes have become considerably more robust.
YooKassa is an online acquiring service by Yandex. It allows online stores to accept payments by card, as well as via SBP, SberPay, Mir Pay, YooMoney, and other methods. You can find more information on the YooKassa website.
We have consolidated all of our Medusa plugins into a single monorepo. This provides several advantages:
For you as a user, only the package name changes. The set of options and the plugin's functionality stay the same. You can read about all of the plugin's capabilities in the documentation.
At the same time, we have made the plugin more reliable. We covered it with tests and set up daily checks for compatibility with the latest Medusa release and the current YooKassa API.
Changes in the package1- medusa-payment-yookassa # before2+ @gorgo/medusa-payment-yookassa # after
The old medusa-payment-yookassa package has been marked as deprecated. It stays on npm until the end of 2026 but will no longer be supported. To keep receiving updates, we recommend moving to the new package now.
The migration consists of changing the package name and reinstalling it.
npm install @gorgo/medusa-payment-yookassaReplace the provider path with the new one, prefixed with , in your file:
medusa-config.js1module.exports = defineConfig({2 // ...3 modules: [4 {5 resolve: "@medusajs/medusa/payment",6 options: {7 providers: [8 {9 resolve: "@gorgo/medusa-payment-yookassa/providers/payment-yookassa",10 id: "yookassa",11 options: {12 // ... the same options13 },14 },15 ],16 },17 },18 ],19})
npm uninstall medusa-payment-yookassaThe migration is now complete, and no further changes are required. A full installation and configuration guide is available in the documentation.
Ask questions and discuss Medusa in the Telegram community, report plugin issues in the Gorgo support chat, or open Issues and Pull Requests on GitHub.