add_feature_consumption
Increase consumption units for a specific feature tied to a license key, hardware ID, and product in the LicenseSpring MCP Server.
Instructions
Add consumption units to a specific feature
Input Schema
Name | Required | Description | Default |
---|---|---|---|
consumptions | Yes | ||
feature | Yes | ||
hardware_id | Yes | ||
license_key | Yes | ||
product | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"consumptions": {
"minimum": 1,
"type": "number"
},
"feature": {
"minLength": 1,
"type": "string"
},
"hardware_id": {
"minLength": 1,
"type": "string"
},
"license_key": {
"minLength": 1,
"type": "string"
},
"product": {
"minLength": 1,
"type": "string"
}
},
"required": [
"license_key",
"hardware_id",
"product",
"feature",
"consumptions"
],
"type": "object"
}