create-crypto-payee
Generate a cryptocurrency payee by providing address, blockchain, currency, and name. Add optional tags or contact details for future reference within Payman AI MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The cryptocurrency address to send funds to | |
chain | Yes | The blockchain to use for the transaction | |
contactDetails | No | Contact details for this payee | |
currency | Yes | The currency/token to use for the transaction | |
name | Yes | The name you wish to associate with this payee for future lookups | |
tags | No | Optional labels you wish to assign to this payee | |
type | No | Type of payment rails to use | CRYPTO_ADDRESS |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "The cryptocurrency address to send funds to",
"type": "string"
},
"chain": {
"description": "The blockchain to use for the transaction",
"type": "string"
},
"contactDetails": {
"additionalProperties": false,
"description": "Contact details for this payee",
"properties": {
"address": {
"additionalProperties": false,
"description": "The address of the payee contact",
"properties": {
"city": {
"description": "City",
"type": "string"
},
"country": {
"description": "Country",
"type": "string"
},
"line1": {
"description": "Address line 1",
"type": "string"
},
"line2": {
"description": "Address line 2",
"type": "string"
},
"postalCode": {
"description": "Postal code",
"type": "string"
},
"state": {
"description": "State",
"type": "string"
}
},
"type": "object"
},
"email": {
"description": "The email address of the payee contact",
"format": "email",
"type": "string"
},
"phoneNumber": {
"description": "The phone number of the payee contact",
"type": "string"
}
},
"type": "object"
},
"currency": {
"description": "The currency/token to use for the transaction",
"type": "string"
},
"name": {
"description": "The name you wish to associate with this payee for future lookups",
"type": "string"
},
"tags": {
"description": "Optional labels you wish to assign to this payee",
"items": {
"type": "string"
},
"type": "array"
},
"type": {
"const": "CRYPTO_ADDRESS",
"default": "CRYPTO_ADDRESS",
"description": "Type of payment rails to use",
"type": "string"
}
},
"required": [
"address",
"chain",
"currency",
"name"
],
"type": "object"
}