Back to Bidders

Media Tradecraft

Features

Bidder Code mtc Prebid.org Member no
Prebid.js Adapter yes Prebid Server Adapter no
Media Types display, video, native Multi Format Support will-bid-on-any
TCF-EU Support yes IAB GVL ID none
GPP Support tcfeu DSA Support check with bidder
USP/CCPA Support yes COPPA Support check with bidder
Supply Chain Support yes Demand Chain Support no
Safeframes OK yes Supports Deals yes
Floors Module Support yes First Party Data Support yes
Endpoint Compression check with bidder ORTB Blocking Support check with bidder
User IDs all Privacy Sandbox check with bidder

Bid Params

Name Scope Description Example Type
tagId required* Media Tradecraft tag ID "testnexx" string
placement required* Media Tradecraft placement "test.com_header_ad" string

You *must only include one ID field - either tagId or placement, not both. If you have questions on which parameter to use, please reach out to your Account Manager. The tagId and placement are mutually exclusive but at least one is required. If you pass both, tagId takes precedence.

Bidder Config

You can allow writing in localStorage pbjs.bidderSettings for the bidder mtc

Prebid note: please review with your legal counsel before enabling storageAllowed. Bidders utilizing browser storage may trigger the need for additional disclosures in your privacy policy and may imply that the bid adapter is performing an activity redundant with user ID systems like SharedID. See the ePrivacy Directive article 5(3) reference to ‘comprehensive information’.

pbjs.bidderSettings = {
    mtc: {
        storageAllowed : true
    }
}

First Party Data

Publishers should use the ortb2 method of setting First Party Data.

Test Parameters

var adUnits = [
   // Banner adUnit
   {
      code: 'banner-div',
      mediaTypes: {
        banner: {
          sizes: [[300, 250], [300,600]]
        }
      },
      bids: [{
         bidder: 'mtc',
         params: {
            tagId: 'testnexx'
         }
       }]
   },
   // Video adUnit
   {
        code: 'video1',
        mediaTypes: {
            video: {
                playerSize: [640, 480],
                context: 'instream'
            }
        },
        bids: [{
            bidder: 'mtc',
            params: {
               tagId: 'testnexx'
            }
        }]
    },
     // Native adUnit
   {
        code: 'native1',
        mediaTypes: {
            native: {
                title: {
                    required: true
                },
                image: {
                    required: true
                },
                sponsoredBy: {
                    required: true
                }
            }
        },
        bids: [{
            bidder: 'mtc',
            params: {
               tagId: 'testnexx'
            }
        }]
    }
];

"Send All Bids" Ad Server Keys

These are the bidder-specific keys that would be targeted within GAM in a Send-All-Bids scenario. GAM truncates keys to 20 characters.
hb_pb_mtc hb_bidder_mtc hb_adid_mtc
hb_size_mtc hb_source_mtc hb_format_mtc
hb_cache_host_mtc hb_cache_id_mtc hb_uuid_mtc
hb_cache_path_mtc hb_deal_mtc

Back to Bidders