New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@algovoi/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@algovoi/mcp-server

MCP server for AlgoVoi — create crypto payment links, verify payments, and generate MPP / x402 challenges from any MCP client (Claude Desktop, Claude Code, Cursor, Windsurf). Supports all 16 AlgoVoi networks: USDC on Algorand/VOI/Hedera/Stellar (mainnet +

Source
npmnpm
Version
1.1.3
Version published
Weekly downloads
32
-28.89%
Maintainers
1
Weekly downloads
 
Created
Source

@algovoi/mcp-server

MCP server for AlgoVoi — create crypto payment links, verify payments, and generate MPP / x402 challenges from any MCP client (Claude Desktop, Claude Code, Cursor, Windsurf).

Supports all 16 AlgoVoi networks: USDC on Algorand, VOI, Hedera, Stellar (mainnet + testnet) and native ALGO, VOI, HBAR, XLM (mainnet + testnet).

Install

# Via npx (no global install)
npx -y @algovoi/mcp-server

# Or install globally
npm install -g @algovoi/mcp-server
algovoi-mcp-server

Requires Node ≥ 20.

Configure

AlgoVoi Cloud routes every integration through one dashboard. Point ALGOVOI_API_BASE at https://cloud.algovoi.co.uk and use your algv_... API key — no tenant ID or payout addresses needed; they're managed centrally. Every payment your AI assistant creates appears alongside payments from every other platform.

{
  "mcpServers": {
    "algovoi": {
      "command": "npx",
      "args": ["-y", "@algovoi/mcp-server"],
      "env": {
        "ALGOVOI_API_KEY": "algv_...",
        "ALGOVOI_API_BASE": "https://cloud.algovoi.co.uk"
      }
    }
  }
}

Sign up free at dash.algovoi.co.uk.

Option B — AlgoVoi direct

Connect straight to the AlgoVoi API with your algv_... key:

{
  "mcpServers": {
    "algovoi": {
      "command": "npx",
      "args": ["-y", "@algovoi/mcp-server"],
      "env": {
        "ALGOVOI_API_KEY": "algv_...",
        "ALGOVOI_TENANT_ID": "your-tenant-uuid",
        "ALGOVOI_PAYOUT_ADDRESS": "YOUR_WALLET_ADDRESS",
        "ALGOVOI_WEBHOOK_SECRET": "optional"
      }
    }
  }
}

Sign up at algovoi.co.uk to get your API key and tenant ID.

Tools

ToolPurpose
create_payment_linkHosted-checkout URL for Algorand / VOI / Hedera / Stellar
verify_paymentCheck if a checkout token settled (optional tx_id)
prepare_extension_paymentIn-page wallet flow params (Algorand / VOI)
verify_webhookHMAC-SHA256 AlgoVoi webhook verification
list_networksSupported chains + asset IDs
generate_mpp_challengeIETF MPP 402 WWW-Authenticate response
verify_mpp_receiptVerify MPP on-chain receipt
verify_x402_proofVerify x402 base64 proof

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."

Development

git clone https://github.com/chopmob-cloud/AlgoVoi-Platform-Adapters
cd AlgoVoi-Platform-Adapters/mcp-server/typescript
npm install
npm run build
npm test

Run the built server directly for debugging:

ALGOVOI_API_KEY=algv_... \
ALGOVOI_TENANT_ID=... \
ALGOVOI_PAYOUT_ADDRESS=... \
  node dist/index.js

License

Business Source License 1.1 — see LICENSE.

Keywords

mcp

FAQs

Package last updated on 19 Apr 2026

Related posts