algovoi-mcp
MCP server for AlgoVoi — create crypto payment links, verify payments, run compliance screens / trust queries, and generate MPP / x402 challenges from any MCP client (Claude Desktop, Claude Code, Cursor, Windsurf).
29 tools across all 26 AlgoVoi networks (13 mainnet + 13 testnet): USDC + native on Algorand, VOI, Hedera, Stellar, Base, Solana, Tempo, and ARC testnet.
Install
uvx algovoi-mcp
pip install algovoi-mcp
algovoi-mcp
Requires Python ≥ 3.10.
Configure
Add to your MCP client config (~/.claude.json, ~/.cursor/mcp.json, or claude_desktop_config.json):
{
"mcpServers": {
"algovoi": {
"command": "uvx",
"args": ["algovoi-mcp"],
"env": {
"ALGOVOI_API_KEY": "algv_...",
"ALGOVOI_TENANT_ID": "your-tenant-uuid",
"ALGOVOI_PAYOUT_ADDRESS": "YOUR_WALLET_ADDRESS",
"ALGOVOI_WEBHOOK_SECRET": "optional"
}
}
}
}
Sign up for an AlgoVoi tenant at algovoi.com to get your API key.
Tools
create_payment_link | Hosted-checkout URL for Algorand / VOI / Hedera / Stellar |
verify_payment | Check if a checkout token settled (optional tx_id) |
prepare_extension_payment | In-page wallet flow params (Algorand / VOI) |
verify_webhook | HMAC-SHA256 AlgoVoi webhook verification |
list_networks | Supported chains + asset IDs |
generate_mpp_challenge | IETF MPP 402 WWW-Authenticate response |
verify_mpp_receipt | Verify MPP on-chain receipt |
verify_x402_proof | Verify x402 base64 proof |
screen_recipient | Pre-payment sanctions / KYB screen (signed compliance receipt) |
compliance_trust_query | Composite trust verdict over a chain of substrate receipts |
…plus MPP subscription lifecycle, Tier 2 recurring authorities, and AP2 / A2A tools — 29 total.
Response model — ALGOVOI_MODE
substrate (default) returns AlgoVoi signed receipts (action_ref, compliance_receipt, settlement_attestation, composite trust hash + ctq_response). standard strips those keys, leaving the bare x402 / MPP / AP2 shape. Set ALGOVOI_MODE=standard to opt out.
Example prompts
"Create an AlgoVoi payment link for $5 USDC on Algorand, labeled 'Order #42'."
"Verify payment token abc123."
"Generate an MPP 402 challenge for my /premium route, $0.01 per call, on Algorand and VOI."
Dependencies
Only mcp>=1.26.0. The AlgoVoi HTTP client is bundled in the package and uses stdlib urllib.request — no requests / httpx needed.
Development
git clone https://github.com/chopmob-cloud/AlgoVoi-Platform-Adapters
cd AlgoVoi-Platform-Adapters/mcp-server/python
pip install -e ".[test]"
pytest
Run the server directly for debugging:
ALGOVOI_API_KEY=algv_... \
ALGOVOI_TENANT_ID=... \
ALGOVOI_PAYOUT_ADDRESS=... \
python -m algovoi_mcp
License
Business Source License 1.1 — see LICENSE.