Skip to main content

Walleot Provider

Walleot enables seamless payments with pre-purchased credits and automatic payment processing.

Features

  • Pre-purchased Credits - Users buy credits in advance for frictionless payments
  • Auto Payments - Automatic payment processing for approved amounts
  • Promocodes – Define promocodes to offer discounts or fully cover tool costs, allowing end users to access features for free or at reduced prices

Quick Setup

1. Get Your API Keys

  1. Sign up at walleot.com
  2. Create a Merchant Account
  3. Navigate to API Keys
  4. Click Create API Key to generate a new key

2. Configuration

from paymcp.providers import WalleotProvider

PayMCP(mcp, providers=[WalleotProvider(api_key="sk_test_...")])

3. Test Your Integration

@mcp.tool()
@price(amount=0.50, currency="USD")
def test_walleot_payment(message: str, ctx: Context) -> str:
"""Test Walleot payment integration"""
return f"Walleot payment successful! Message: {message}"

Test with small amounts first.

Support