# 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.

## 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.

## Definition 1 (full)

Registered in: Droplit wallet.

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

| Field | Type | Required | Description | Constraints |
| --- | --- | --- | --- | --- |
| faucetName | string | Yes | Identifier for the new faucet; must be unique | minLength: 1 |
| fixedDropSats | integer | No | Satoshis paid out per tap. Server default applies if unset. | maximum: 9007199254740991; exclusiveMinimum: 0 |
| maxConsolidationInputs | integer | No | Cap on inputs the faucet consolidates in one transaction | maximum: 9007199254740991; exclusiveMinimum: 0 |

Nested requirements apply when their parent is supplied.

### Input schema

```json
{
  "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"
}
```

[All tools](https://bsvmcp.com/docs/tools)