Prompt
Shop the marketplace with trust data. The agent compares packages and single placements. It builds the cart you approve and gives a person the Stripe link. After payment, it sends the order brief to each publisher.
Paste this into Claude, Codex, Cursor, ChatGPT, or another coding agent. The website, the expected output, and the approval boundary are already written in. First run? Complete the one-time setup; your agent can handle that too.
What does Buy a Placement Worth Buying do?
This is the sequence the agent follows. It reads data on its own. You approve each send or change.
- 01
Compare packages
Run
marketplace_packagesfor packages priced for your account, with the websites in each. - 02
Check single placements
Run
marketplace_sitesfor one-off listings, ranked with your niche first. - 03
Build the cart
Run
marketplace_cart_add_packageormarketplace_cart_add_siteonce you approve a row. - 04
Hand over checkout
Run
marketplace_cart_checkoutfor a Stripe URL. The agent never charges a card; a human pays. - 05
Brief the order
Run
marketplace_order_briefso publishers know what to write. - 06
Post what you want
Run
marketplace_requeststo publish what your website is asking others for, and what you pay.
Commands inside Buy a Placement Worth Buying
The exact MCP tool calls behind the prompt. Your agent runs these against the verifieddr server; the ones that send anything still stop for your approval.
# 1. Packages priced for your accountmarketplace_packages { } # 2. Single-website placements, your niche firstmarketplace_sites { limit: 25 } # 3. Add what you approved to the cartmarketplace_cart_add_package { packageId: "package-id" }marketplace_cart_add_site { websiteId: "website-id" } # 4. Checkout prints a Stripe URL; a human paysmarketplace_cart_checkout { } # 5. Brief the paid order so publishers can startmarketplace_order_brief { orderNo: "VDR-1234", targetUrls: ["https://yourwebsite.com/pricing"] } # 6. Post what your website wants from othersmarketplace_requests { site: "yourwebsite.com" }