Web3 MCP Server

transfer

Transfer SOL from your keypair to another address

Input Schema

NameRequiredDescriptionDefault
amountYesAmount of SOL to send
secretKeyYesYour keypair's secret key (as comma-separated numbers or JSON array)
toAddressYesDestination wallet address

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "amount": { "description": "Amount of SOL to send", "exclusiveMinimum": 0, "type": "number" }, "secretKey": { "description": "Your keypair's secret key (as comma-separated numbers or JSON array)", "type": "string" }, "toAddress": { "description": "Destination wallet address", "type": "string" } }, "required": [ "secretKey", "toAddress", "amount" ], "type": "object" }