Documentation

Pixa Wallet.

The first agentic payment wallet built for Algorand. Pixa lets agents discover, authorize, and settle x402 micropayments from Claude Desktop or custom agent frameworks.

Algorand MainnetMCP Nativex402 SupportedMIT

One click

Install

Download the `.mcpb` extension and double-click. Pixa installs into Claude Desktop without terminal work.

Download Latest Release

JSON

Claude Desktop

Developers can add Pixa directly to the Claude Desktop MCP config. Restart Claude after saving.

jsonPixa
{
  "mcpServers": {
    "pixa": {
      "command": "npx",
      "args": ["-y", "pixa-wallet-mcp"],
      "env": {
        "ALGORAND_MNEMONIC": "your 25-word mnemonic here",
        "NETWORK": "algorand-mainnet",
        "MAX_PER_CALL": "0.10",
        "MAX_PER_DAY": "20.00"
      }
    }
  }
}

LangChain

Custom Agents

Use the MCP toolkit from LangChain or LangGraph and expose Pixa tools to your agent runtime.

pythonPixa
from langchain_mcp import MCPToolkit

toolkit = MCPToolkit(
    server_command="npx",
    server_args=["-y", "pixa-wallet-mcp"],
    env={
        "ALGORAND_MNEMONIC": "your 25-word mnemonic",
        "NETWORK": "algorand-mainnet",
        "MAX_PER_CALL": "0.50",
        "MAX_PER_DAY": "50.00"
    }
)

tools = toolkit.get_tools()

Config

Environment

VariableRequiredDefaultDescription
ALGORAND_MNEMONICYes-25-word Algorand mnemonic
NETWORKNoalgorand-mainnetMainnet or testnet
MAX_PER_CALLNo0.10Max USDC per payment
MAX_PER_DAYNo20.00Daily spending cap

MCP

Tools Reference

Wallet

check_balancetransfer_usdctransfer_algospending_reportrequest_funding

x402

payx402_fetchsearch_bazaar

DeFi

tinyman_swapcreate_token

Unified Agent Layer

Live Demo

Ask your agent to access the demo endpoint. Pixa handles the 402 payment, confirms the transaction, retries the request, and returns the result.

endpointPixa
https://unified-agent-layer-production.up.railway.app/v1/chat

Payment Flow

01

Agent request

02

402 required

03

Budget check

04

USDC auth

05

Result

Controls

Security Model

Autonomy Modes

01

Full autonomous

02

Session based

03

Human approval

Budget limits
Spending tracker
NFD resolution
Secure key storage
Transaction finality
Per-call audit trail

Settlement

Why Algorand

CapabilityAlgorandEVM Chains
Finality~3.3 seconds12s+ probabilistic
Fees< $0.001$0.50-$5.00+
Atomic transactionsNativeContract workaround
Native USDCYesOften bridged
MicropaymentsViableGas exceeds value

Status

Roadmap

Now

Mainnet wallet operations, x402, Tinyman, NFD, MCP bundle.

Next

UPI-to-USDC widget via Mudrex API.

Future

Non-custodial treasury, multi-sig, and multi-chain routing.