NEAR MCP

by nearai
Verified

tokens_send_near

Send NEAR tokens between accounts on the NEAR blockchain. Specify sender, receiver, and amount to execute the transfer. Ensure both accounts are on the same network.

Instructions

Send NEAR tokens to an account (in NEAR). The signer account is the sender of the tokens, and the receiver account is the recipient of the tokens. Remember mainnet accounts are created with a .near suffix, and testnet accounts are created with a .testnet suffix. The user is sending tokens as the signer account. Please ensure that the sender and receiver accounts are in the same network.

Input Schema

NameRequiredDescriptionDefault
amountNoThe amount of NEAR to send in NEAR. e.g. 1.5
networkIdNomainnet
receiverAccountIdYes
signerAccountIdYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "amount": { "default": 1.0000000000000001e-24, "description": "The amount of NEAR to send in NEAR. e.g. 1.5", "type": [ "number", "integer" ] }, "networkId": { "default": "mainnet", "enum": [ "testnet", "mainnet" ], "type": "string" }, "receiverAccountId": { "type": "string" }, "signerAccountId": { "type": "string" } }, "required": [ "signerAccountId", "receiverAccountId" ], "type": "object" }
ID: ibzhoz5k4z