← BSV MCPInstall
Wallet

wallet_createDroplitFaucet

Creates a faucet owned by this wallet which must be funded before use. This does not provide free credit or approval for another sponsor.

Read as Markdown

Result

An MCP result containing the operation outcome as text, with structured content where supplied. Check isError before using it; an output schema is shown when registered.

Permissions

This operation can change wallet, account or service state. A connected wallet applies its own permissions. Guarded broadcasts also require broadcasting to be enabled; service authorization is separate from wallet approval.

Inputs and availability

Full catalog · Droplit wallet

FieldType / requiredDescription
faucetNamestring
Required
Identifier for the new faucet; must be unique

minLength: 1

fixedDropSatsinteger
Optional
Satoshis paid out per tap. Server default applies if unset.

maximum: 9007199254740991; exclusiveMinimum: 0

maxConsolidationInputsinteger
Optional
Cap on inputs the faucet consolidates in one transaction

maximum: 9007199254740991; exclusiveMinimum: 0

Nested fields are required only when their parent object or array item is supplied.

Full input schema
{
  "type": "object",
  "properties": {
    "faucetName": {
      "type": "string",
      "minLength": 1,
      "description": "Identifier for the new faucet; must be unique"
    },
    "fixedDropSats": {
      "description": "Satoshis paid out per tap. Server default applies if unset.",
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991
    },
    "maxConsolidationInputs": {
      "description": "Cap on inputs the faucet consolidates in one transaction",
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991
    }
  },
  "required": [
    "faucetName"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}