{
  "info": {
    "name": "Starshipit — mcp.ai",
    "description": "REST API for the Starshipit MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/starshipit",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "starshipit_create_manifest",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/manifest",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "manifest"
          ]
        },
        "description": "Create and finalize a Starshipit manifest PDF for only the explicitly listed shipments. WARNING: manifesting is an irreversible fulfilment operation that can mark shipments as manifested; verify every",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"identifier_type\": \"\",\n  \"shipment_numbers\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "starshipit_create_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "order"
          ]
        },
        "description": "Create one unshipped Starshipit order with destination, line items, packages, sender, and customs details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"order\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "starshipit_create_shipping_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/shipping/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "shipping",
            "label"
          ]
        },
        "description": "Create shipping labels for one Starshipit order. This also creates the shipment and its tracking numbers and is irreversible. Labels come back in the account's configured format, usually PDF.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"carrier\": \"\",\n  \"order_id\": 0,\n  \"packages\": \"\",\n  \"order_number\": \"\",\n  \"carrier_service_code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "starshipit_create_shipping_labels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/shipping/labels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "shipping",
            "labels"
          ]
        },
        "description": "Create shipping labels for multiple existing Starshipit orders in one irreversible batch. This creates shipments and tracking numbers and can move orders to Printed. Starshipit does not document atomi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"order_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "starshipit_get_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "order"
          ]
        },
        "description": "Retrieve one order by its Starshipit numeric ID or source-platform order number.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"order_id\": 0,\n  \"order_number\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "starshipit_get_shipping_rates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/shipping/rates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "shipping",
            "rates"
          ]
        },
        "description": "Quote available Starshipit shipping services and prices for a destination and one or more packages.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sender\": {},\n  \"currency\": \"\",\n  \"packages\": \"\",\n  \"destination\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "starshipit_get_tracking",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tracking",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tracking"
          ]
        },
        "description": "Get current shipment status and carrier tracking events by tracking number or order number.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"order_number\": \"\",\n  \"tracking_number\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "starshipit_get_wms_performance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/wms/performance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "wms",
            "performance"
          ]
        },
        "description": "Return Starshipit WMS order-cycle and SLA performance metrics for the previous 1 to 90 days.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"days_back\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "starshipit_list_manifests",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/manifests",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "manifests"
          ]
        },
        "description": "Return one page of manifests in reverse chronological order.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "starshipit_list_products",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/products",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "products"
          ]
        },
        "description": "Search and page through the Starshipit product catalogue with optional sorting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page_size\": 0,\n  \"next_cursor\": \"\",\n  \"search_term\": \"\",\n  \"sort_column\": \"\",\n  \"skip_records\": 0,\n  \"sort_direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "starshipit_list_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tags"
          ]
        },
        "description": "Return one page of user-defined order tags, optionally filtered by tag name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"page_size\": 0,\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "starshipit_list_unshipped_orders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/unshipped/orders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "unshipped",
            "orders"
          ]
        },
        "description": "Return one page of unshipped orders, optionally limited to orders created or updated after a UTC timestamp.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"ids_only\": false,\n  \"since_order_date\": \"\",\n  \"since_last_updated\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "starshipit_list_wms_inventory",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/wms/inventory",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "wms",
            "inventory"
          ]
        },
        "description": "Return one page of Starshipit WMS inventory grouped by product or location, including stock, reservation, and availability quantities.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"search\": \"\",\n  \"sort_by\": \"\",\n  \"client_id\": \"\",\n  \"page_size\": 0,\n  \"view_mode\": \"\",\n  \"next_cursor\": \"\",\n  \"product_type\": \"\",\n  \"in_stock_only\": false,\n  \"sort_direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "starshipit_search_orders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/orders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "orders"
          ]
        },
        "description": "Search orders by a phrase and optional field, status, or child-account inclusion filter. Returns one page at a time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"phrase\": \"\",\n  \"status\": \"\",\n  \"include_child_accounts\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "starshipit_update_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "order"
          ]
        },
        "description": "Update editable fields on one Starshipit order identified by order_id or order_number. This sends one PUT request and does not read the order first. Unshipped orders permit updates to non-read-only fi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"order\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}