w3_coupon_create
Create or claim a coupon using a unique claim code on the MCP IPFS Server, enabling secure and efficient coupon management for storacha.network spaces.
Instructions
Attempts to create/claim a coupon using a claim code.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
claimCode | Yes | The claim code for the coupon. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"description": "Attempts to create/claim a coupon using a claim code.",
"properties": {
"claimCode": {
"description": "The claim code for the coupon.",
"type": "string"
}
},
"required": [
"claimCode"
],
"type": "object"
}