MCP server
A stdio MCP server that exposes the seller surface as tools. Drop it into Claude Desktop (or any MCP client) and an agent can create priced resources, set wallets, and read settlements — every payment settled over HTTP 402, direct to your own wallet. 402 Online Protocol ↗
Tools
uxc_get_agentaccount, activation, balances, walletsuxc_set_walletset your receive address for an assetuxc_create_resourcecreate a priced resource (fiat amount)uxc_list_resourceslist your priced resourcesuxc_create_challengemint the per-coin 402 challengeuxc_get_settlementssettlement historyuxc_view_doorinspect the 402 door for a resourceuxc_verify_paymentverify an on-chain paymentClaude Desktop config
Add to claude_desktop_config.json:
{
"mcpServers": {
"agents-u-cash": {
"command": "php",
"args": ["/path/agents/mcp/server.php"],
"env": { "UXC_API_KEY": "your_key" }
}
}
}
Setup
- Sign up (
POST /v1/signup) for an API key, then top up ≥ $1 to activate. - Point
argsat your localagents/mcp/server.phpand put your key inUXC_API_KEY. - Restart Claude Desktop — the
uxc_*tools appear. Payments always settle direct to your own wallet; the platform never holds funds.