← All WebMCP sites

vaanzari.com

Commercehttps://vaanzari.com/listed as of 2026-08-26
Explore handcrafted Banarasi sarees from Vaanzari, with artisan provenance, woven traditions and thoughtful customer care in India and worldwide.
See Ora's auditWe loaded this site in a real browser and scored its tools. Score: 59/100 (C).

Tools

scan_images_c2paactimperative
Scan every <img> on the current page for C2PA Content Credentials (content provenance metadata) and return a per-image summary: whether a manifest is present, the claim generator (the tool that produced or edited the image), the title, and the signer name. Use this to find which images on a page carry provenance data. Note: provenance is decoded but NOT cryptographically verified.
Input schema
{
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100,
      "default": 25,
      "description": "Maximum number of images to fetch and scan (default 25, max 100)."
    }
  },
  "required": []
}
inspect_image_c2paactimperative
Fetch a single image (by CSS selector or URL) and return its fully decoded C2PA manifest store: every manifest's claim, assertions (e.g. c2pa.actions edit history, schema.org authorship), and the COSE signature details (algorithm and signing-certificate identity). Provide exactly one of `selector` or `url`. Note: the signature is decoded but NOT cryptographically verified.
Input schema
{
  "type": "object",
  "properties": {
    "selector": {
      "type": "string",
      "maxLength": 8192,
      "description": "CSS selector for an <img> element on the page."
    },
    "url": {
      "type": "string",
      "maxLength": 8192,
      "description": "Image URL (absolute, or relative to the current page) to fetch and inspect."
    }
  },
  "required": []
}
search_sareesanswerimperative
Search visible Vaanzari sarees using verified catalogue fields. Missing attributes remain unset.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "q": {
      "type": "string",
      "maxLength": 120
    },
    "page": {
      "default": 1,
      "type": "integer",
      "minimum": 1,
      "maximum": 1000
    },
    "limit": {
      "default": 12,
      "type": "integer",
      "minimum": 1,
      "maximum": 50
    },
    "fabric": {
      "type": "string",
      "maxLength": 100
    },
    "technique": {
      "type": "string",
      "maxLength": 100
    },
    "region": {
      "type": "string",
      "maxLength": 100
    },
    "occasion": {
      "type": "string",
      "maxLength": 100
    }
  }
}
get_sareeanswerimperative
Get one visible Vaanzari saree by public catalogue ID or canonical locator.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    }
  },
  "required": [
    "id"
  ]
}
list_artisansanswerimperative
List public artisan profiles connected to the visible Vaanzari catalogue.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {}
}
get_artisananswerimperative
Get one public Vaanzari artisan profile.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    }
  },
  "required": [
    "id"
  ]
}
get_accountanswerimperative
Read the authorized customer account profile.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {}
}
update_profileactimperative
Update customer name, phone, and delivery address after explicit confirmation.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "name": {
      "type": "string",
      "maxLength": 120
    },
    "phone": {
      "type": "string",
      "minLength": 7,
      "maxLength": 32
    },
    "address": {
      "type": "string",
      "minLength": 10,
      "maxLength": 500
    },
    "confirmation_token": {
      "type": "string",
      "maxLength": 200
    }
  },
  "required": [
    "name",
    "phone",
    "address"
  ]
}
get_cartanswerimperative
Read customer cart and current totals.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {}
}
add_to_cartactimperative
Add a visible saree to customer cart.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "saree_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "quantity": {
      "default": 1,
      "type": "integer",
      "minimum": 1,
      "maximum": 20
    }
  },
  "required": [
    "saree_id"
  ]
}
set_cart_quantityactimperative
Set quantity for one customer cart item.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "item_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "quantity": {
      "type": "integer",
      "minimum": 1,
      "maximum": 20
    }
  },
  "required": [
    "item_id",
    "quantity"
  ]
}
remove_from_cartactimperative
Remove one customer cart item.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "item_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    }
  },
  "required": [
    "item_id"
  ]
}
get_picksanswerimperative
Read saved Vaanzari picks.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {}
}
save_pickactimperative
Save one visible saree to customer picks.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "saree_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    }
  },
  "required": [
    "saree_id"
  ]
}
remove_pickactimperative
Remove one saree from customer picks.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "saree_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    }
  },
  "required": [
    "saree_id"
  ]
}
get_rewardsanswerimperative
Read customer reward balance and recent point transactions.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {}
}
get_checkout_summaryanswerimperative
Revalidate cart, discounts, points, addresses, and checkout total without placing an order.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "points_to_redeem": {
      "type": "integer",
      "minimum": 0,
      "maximum": 10000000
    },
    "coupon_code": {
      "type": "string",
      "maxLength": 50
    }
  }
}
validate_couponactimperative
Validate a coupon against the authorized customer cart.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "code": {
      "type": "string",
      "minLength": 1,
      "maxLength": 50
    }
  },
  "required": [
    "code"
  ]
}
start_checkouttransactimperative
Create a hosted Cashfree or PhonePe checkout after explicit confirmation. No payment is captured by this tool.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "payment_method": {
      "type": "string",
      "enum": [
        "cashfree",
        "phonepe",
        "online"
      ]
    },
    "payment_mode": {
      "type": "string",
      "enum": [
        "upi",
        "card",
        "netbanking",
        "wallet",
        "international_card"
      ]
    },
    "shipping_address": {
      "type": "string",
      "minLength": 10,
      "maxLength": 500
    },
    "billing_address": {
      "type": "string",
      "minLength": 10,
      "maxLength": 500
    },
    "points_to_redeem": {
      "type": "integer",
      "minimum": 0,
      "maximum": 10000000
    },
    "coupon_code": {
      "type": "string",
      "maxLength": 50
    },
    "idempotency_key": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "confirmation_token": {
      "type": "string",
      "maxLength": 200
    }
  },
  "required": [
    "payment_method",
    "idempotency_key"
  ]
}
list_ordersanswerimperative
List authorized customer orders.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {}
}
get_orderanswerimperative
Get one authorized customer order.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "order_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    }
  },
  "required": [
    "order_id"
  ]
}
cancel_ordertransactimperative
Request cancellation for an eligible customer order after explicit confirmation.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "order_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "reason": {
      "type": "string",
      "minLength": 3,
      "maxLength": 500
    },
    "confirmation_token": {
      "type": "string",
      "maxLength": 200
    }
  },
  "required": [
    "order_id",
    "reason"
  ]
}
get_payment_statusanswerimperative
Read latest provider status for a customer payment attempt.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "attempt_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    }
  },
  "required": [
    "attempt_id"
  ]
}
resume_paymenttransactimperative
Resume an unpaid hosted payment attempt after explicit confirmation.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "attempt_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "confirmation_token": {
      "type": "string",
      "maxLength": 200
    }
  },
  "required": [
    "attempt_id"
  ]
}
retry_paymenttransactimperative
Retry an unpaid hosted payment attempt after explicit confirmation.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "attempt_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "confirmation_token": {
      "type": "string",
      "maxLength": 200
    }
  },
  "required": [
    "attempt_id"
  ]
}
cancel_payment_attempttransactimperative
Cancel an unpaid hosted payment attempt after explicit confirmation.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "attempt_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "confirmation_token": {
      "type": "string",
      "maxLength": 200
    }
  },
  "required": [
    "attempt_id"
  ]
}
list_support_ticketsanswerimperative
List authorized customer support tickets.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {}
}
get_support_ticketanswerimperative
Get one authorized customer support ticket and its messages.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "ticket_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    }
  },
  "required": [
    "ticket_id"
  ]
}
create_support_ticketactimperative
Create a customer support ticket after explicit confirmation.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "subject": {
      "type": "string",
      "minLength": 3,
      "maxLength": 200
    },
    "message": {
      "type": "string",
      "minLength": 3,
      "maxLength": 4000
    },
    "order_id": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991
    },
    "confirmation_token": {
      "type": "string",
      "maxLength": 200
    }
  },
  "required": [
    "subject",
    "message"
  ]
}
reply_support_ticketactimperative
Reply to a customer support ticket after explicit confirmation.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "ticket_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "message": {
      "type": "string",
      "minLength": 1,
      "maxLength": 4000
    },
    "confirmation_token": {
      "type": "string",
      "maxLength": 200
    }
  },
  "required": [
    "ticket_id",
    "message"
  ]
}
close_support_ticketactimperative
Close a customer support ticket after explicit confirmation.
Input schema
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "ticket_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "confirmation_token": {
      "type": "string",
      "maxLength": 200
    }
  },
  "required": [
    "ticket_id"
  ]
}
Listings are sourced from public community registries and shown as reported.