Server SDKs
Connect your backend to Mercado Pago. Choose your language, install the library, and initialize with your Access TokenView credentials.
PHP 8.2+
bash
composer require mercadopago/dx-php
php
require_once('vendor/autoload.php'); use MercadoPago\MercadoPagoConfig; MercadoPagoConfig::setAccessToken("YOUR_ACCESS_TOKEN");
Web SDKs
Tokenize cards and render Checkout Bricks directly in the browser. Initialize with your Public KeyView credentials.
Modern browsers (Chrome, Firefox, Safari, Edge)
bash
npm install @mercadopago/sdk-js
javascript
const mp = new MercadoPago("YOUR_PUBLIC_KEY");
Or via script tag without a bundler:
html
<script src="https://sdk.mercadopago.com/js/v2"></script>
Mobile SDKs
Securely integrate card tokenization in native applications. Initialize with your production Public KeyView credentials.
Swift · UIKit and SwiftUI
- In Xcode, go to File > Add Packages.
- Paste the URL:
https://github.com/mercadopago/sdk-ios - Select the desired version and click Add Package.
swift
import CoreMethods let configuration = MercadoPagoSDK.Configuration( publicKey: "YOUR_PUBLIC_KEY", country: .argentina ) MercadoPagoSDK.shared.initialize(configuration)
