# mnee_sendMnee

Send MNEE tokens to a specified address

## 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: Legacy local wallet; Legacy local identity.

Send MNEE tokens to a specified address

| Field | Type | Required | Description | Constraints |
| --- | --- | --- | --- | --- |
| address | string | Yes | The recipient's address | minLength: 1 |
| amount | number | Yes | Amount to send; must be greater than zero | exclusiveMinimum: 0 |
| currency | "MNEE" \| "USD" | No | Currency of the amount (MNEE or USD) | default: "MNEE" |

Nested requirements apply when their parent is supplied.

### Input schema

```json
{
  "type": "object",
  "properties": {
    "address": {
      "type": "string",
      "minLength": 1,
      "description": "The recipient's address"
    },
    "amount": {
      "type": "number",
      "exclusiveMinimum": 0,
      "description": "Amount to send; must be greater than zero"
    },
    "currency": {
      "default": "MNEE",
      "description": "Currency of the amount (MNEE or USD)",
      "type": "string",
      "enum": [
        "MNEE",
        "USD"
      ]
    }
  },
  "required": [
    "address",
    "amount"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}
```

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