payment_methods
Retrieve user payment methods to troubleshoot issues or when instructed. Fewsats MCP Server's tool ensures access to payment details for secure transactions and balance management.
Instructions
Retrieve the user's payment methods. You will rarely need to call this unless instructed by the user, or to troubleshoot payment issues. Fewsats will automatically select the best payment method.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/fewsats_mcp/server.py:22-27 (handler)MCP tool handler function for 'payment_methods'. It retrieves the user's payment methods by calling Fewsats().payment_methods() and wraps the response using handle_response.async def payment_methods() -> str: """Retrieve the user's payment methods. You will rarely need to call this unless instructed by the user, or to troubleshoot payment issues. Fewsats will automatically select the best payment method.""" return handle_response(Fewsats().payment_methods())