Payman AI MCP Server provides a bridge to Payman AI's payment processing API, enabling AI assistants to create payees, search existing payees, send payments, and check balances through natural language prompts. Built with TypeScript using the Model Context Protocol SDK, it authenticates with the Payman API using API keys and exposes four specialized tools that handle the core payment operations. The server runs on stdio transport, making it compatible with Claude Desktop and Cursor, and is particularly useful for developers who want to integrate payment functionality into their AI assistant workflows without switching context to a separate payment interface.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
Sets the Payman API key for authentication. Parameters: apiKey (string): The Payman API key
Creates a TEST_RAILS payee for testing. Parameters: name (string): Name of the payee, type (string): 'TEST_RAILS' (default), tags (string[]): Optional tags for the payee
Creates a US_ACH payee for bank transfers. Parameters: type (string): 'US_ACH' (default), accountType (enum): 'checking' or 'savings', accountNumber (string): The bank account number, routingNumber (string): The routing number, accountHolderName (string): The name of the account holder, accountHolderType (enum): 'individual' or 'business', name (string): Name for this payee, Plus additional optional parameters (tags, contactDetails)
Creates a CRYPTO_ADDRESS payee for cryptocurrency payments. Parameters: type (string): 'CRYPTO_ADDRESS' (default), address (string): The cryptocurrency address, chain (string): The blockchain to use, currency (string): The cryptocurrency/token, name (string): Name for this payee, Plus additional optional parameters (tags, contactDetails)
Sends a payment to a payee. Parameters: payeeId (string): ID of the payee to pay, amountDecimal (number): Amount to send, walletId (string, optional): Specific wallet to use, memo (string, optional): Payment memo, metadata (object, optional): Additional metadata
Search for payees based on various criteria. Parameters: Multiple optional search parameters including name, contactEmail, accountNumber, etc.
Retrieves the current account balance. Parameters: None