# droplit_push

Submit one sponsored data transaction. Subject to sponsor approval and quotas. An unknown outcome requires checking transaction history before retrying.

## 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: Local Vault + sponsor; Droplit wallet.

Submit one sponsored data transaction. Subject to sponsor approval and quotas. An unknown outcome requires checking transaction history before retrying.

| Field | Type | Required | Description | Constraints |
| --- | --- | --- | --- | --- |
| data | array of string | Yes |  | minItems: 1 |
| encoding | "hex" \| "utf8" | Yes |  |  |

Nested requirements apply when their parent is supplied.

### Input schema

```json
{
  "type": "object",
  "properties": {
    "data": {
      "minItems": 1,
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "encoding": {
      "type": "string",
      "enum": [
        "hex",
        "utf8"
      ]
    }
  },
  "required": [
    "data",
    "encoding"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}
```

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