get_order

get_order

get_order reads one Order and its OrderItem rows. Slack and email show BSKF-2EW8-L9NT. The stored id is BSKF2EW8L9NT. Both work.

Admin ops. Fulfillment / customer data. Requires admin after MCP OAuth. No refund, cancel, or charge.

Get order BSKF-2EW8-L9NT and list each item’s target URL and status.

Arguments

NameTypeRequired
orderIdstringYes

Request

{
  "orderId": "BSKF-2EW8-L9NT"
}

Response

{
  "status": "found",
  "order": {
    "id": "BSKF2EW8L9NT",
    "displayId": "BSKF-2EW8-L9NT",
    "status": "WORKING",
    "billing": "monthly",
    "totalCost": 1440,
    "stripeCheckoutSessionId": "cs_test_1",
    "stripePaymentIntentId": "pi_test_1",
    "items": [
      {
        "domain": "pending-1.linkdr.local",
        "targetUrl": "https://reelsfarm.com",
        "status": "PENDING",
        "cost": 240
      }
    ]
  }
}

A miss:

{ "status": "miss", "orderId": "UNKNOWN" }

This tool does not refund, cancel, or charge.

What to explore next