create-test-rails-payee
Generate a new payee using TEST_RAILS payment type. Specify the payee name and optional tags to streamline payment testing and tracking within the Payman AI MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the payee | |
tags | No | Optional tags for the payee | |
type | No | Type of payment rails to use | TEST_RAILS |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Name of the payee",
"type": "string"
},
"tags": {
"description": "Optional tags for the payee",
"items": {
"type": "string"
},
"type": "array"
},
"type": {
"const": "TEST_RAILS",
"default": "TEST_RAILS",
"description": "Type of payment rails to use",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}