floating_borrow
Allocate a floating license for offline use by specifying license key, hardware ID, product, and duration via the LicenseSpring MCP Server.
Instructions
Borrow a floating license for offline use
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| borrowed_until | Yes | ||
| hardware_id | Yes | ||
| license_key | Yes | ||
| product | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"borrowed_until": {
"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",
"borrowed_until"
],
"type": "object"
}