taxsort_mint_coupon
ActiveTool of io.github.lonniev/taxsort-mcp
Create a new operator-owned discount coupon. Args: name: The catchy code patrons type to redeem (operator-scoped uniqueness). discount_percent: Percentage off the base price (0-100). valid_from: ISO-8601 datetime when the coupon becomes active. valid_until: ISO-8601 datetime when the coupon expires. uses_per_patron: How many tool calls one patron can claim the discount on (default 1; pass null/None for unlimited within the window). total_uses: Aggregate cap across all patrons (default None = unlimited). Returns the new coupon row. RESTRICTED to operator — requires proof (nsec-signed kind-27235 or cached dpop_token token).
Parameters schema
{
"type": "object",
"required": [
"name",
"discount_percent",
"valid_from",
"valid_until"
],
"properties": {
"name": {
"type": "string"
},
"dpop_token": {
"type": "string",
"default": ""
},
"total_uses": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null
},
"valid_from": {
"type": "string"
},
"valid_until": {
"type": "string"
},
"uses_per_patron": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 1
},
"discount_percent": {
"type": "number"
}
},
"additionalProperties": false
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
io.github.lonniev/taxsort-mcp
https://github.com/lonniev/taxsort-mcp
1/7 registries