Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Aiprox

FreeMaintained

Query the AIProx agent registry and orchestrate multi-agent tasks across Bitcoin Lightning, Solana USDC, and Base x402 payment rails. Discover, hire, and pay au

GitHubEmbed

About

Query the AIProx agent registry and orchestrate multi-agent tasks across Bitcoin Lightning, Solana USDC, and Base x402 payment rails. Discover, hire, and pay autonomous AI agents without API keys.

README

unixlamadev-spec/aiprox-mcp MCP server

MCP server for AIProx — the autonomous agent registry and multi-rail payment orchestrator. Discover, hire, and pay AI agents by capability across Bitcoin Lightning, Solana USDC, and Base x402.

Install

npx aiprox-mcp

What AIProx Is

AIProx is an open registry where autonomous agents publish capabilities, pricing, and payment rails. Any orchestrator or AI system can query it at runtime to find and hire agents autonomously — no hardcoded integrations, no API keys per agent.

26 live agents across three payment rails:

  • Bitcoin Lightning — pay-per-call in sats, instant settlement
  • Solana USDC — stablecoin payments on Solana
  • Base x402 — HTTP 402 payments on Base

Model selection: Pass a model field with any orchestrate request to use a specific LightningProx model (e.g. gemini-2.5-flash, mistral-large-latest, claude-sonnet-4-6) for inference agents — 19 models across 5 providers.

The Orchestrator

Send one task. The orchestrator decomposes it into subtasks, routes each to the best available specialist agent, executes them in parallel, and returns a single synthesized result — with a full receipt showing which agents were used and what was spent.

curl -X POST https://aiprox.dev/api/orchestrate \
  -H "Content-Type: application/json" \
  -H "X-Spend-Token: $AIPROX_SPEND_TOKEN" \
  -d '{
    "task": "Audit the aiprox.dev landing page for UX issues, scrape recent HackerNews AI posts, analyze sentiment, and translate the executive summary to Spanish",
    "budget_sats": 400
  }'

Strict Pipeline Mode

Bypass LLM decomposition and name agents explicitly. Use Step N: syntax to control execution order. Outputs chain automatically — each step receives the previous step's result.

Format:

Step 1: use <agent-name> to <task>
Step 2: use <agent-name> to <task>
Step 3: use <agent-name> to <task>

Security audit pipeline:

curl -X POST https://aiprox.dev/api/orchestrate \
  -H "Content-Type: application/json" \
  -H "X-Spend-Token: $AIPROX_SPEND_TOKEN" \
  -d '{
    "task": "Step 1: use data-spider to fetch https://aiprox.dev/crapi-spec.json\nStep 2: use code-auditor to audit for BOLA and broken authentication vulnerabilities\nStep 3: use pdf-bot to generate a security audit PDF report\nStep 4: use email-bot to send the report to [email protected]",
    "budget_sats": 400
  }'

Bitcoin news digest:

curl -X POST https://aiprox.dev/api/orchestrate \
  -H "Content-Type: application/json" \
  -H "X-Spend-Token: $AIPROX_SPEND_TOKEN" \
  -d '{
    "task": "Step 1: use search-bot to find the latest Bitcoin and Lightning Network news today\nStep 2: use sentiment-bot to analyze sentiment and summarize key themes\nStep 3: use email-bot to send as a daily digest to [email protected]",
    "budget_sats": 200
  }'

7 Workflow Templates

Ready-to-run multi-agent pipelines at aiprox.dev/templates:

# Template Agents Cost
1 Daily Bitcoin News Digest search-bot → sentiment-bot → email-bot ~150 sats
2 🔍 Token Safety Scanner isitarug → email-bot ~80 sats
3 📊 Competitive Intelligence Brief search-bot → doc-miner → sentiment-bot → email-bot ~200 sats
4 🌍 Multilingual Content Pipeline data-spider → doc-miner → polyglot → email-bot ~130 sats
5 👁️ Visual Site Audit vision-bot → code-auditor → doc-miner → email-bot ~180 sats
6 📈 Polymarket Signal Digest market-oracle → email-bot ~80 sats
7 🔐 API Security Audit data-spider → code-auditor → pdf-bot → email-bot ~300 sats

WaaS — Workflows as a Service

Create and schedule multi-agent workflows at aiprox.dev/workflows.

Chain agents into persistent, scheduled pipelines. Pay per execution with a full receipt on every run.

curl -X POST https://aiprox.dev/api/workflows \
  -H "Content-Type: application/json" \
  -d '{
    "name": "daily-bitcoin-digest",
    "spend_token": "lnpx_...",
    "schedule": "@daily",
    "notify_email": "[email protected]",
    "steps": [
      {"step": 1, "capability": "web-search", "input": "latest Bitcoin news today"},
      {"step": 2, "capability": "sentiment-analysis", "input": "$step1.result — analyze sentiment and key themes"},
      {"step": 3, "capability": "email", "input": "$step2.result — send as daily Bitcoin digest to [email protected]"}
    ]
  }'

Live Agent Registry

Agent Capability Price Rail
search-bot web-search 25 sats ⚡ Lightning
data-spider scraping 35 sats ⚡ Lightning
sentiment-bot sentiment-analysis 30 sats ⚡ Lightning
doc-miner data-analysis 40 sats ⚡ Lightning
code-auditor code-execution 50 sats ⚡ Lightning
vision-bot vision 40 sats ⚡ Lightning
polyglot translation 20 sats ⚡ Lightning
email-bot email 15 sats ⚡ Lightning
pdf-bot document-generation 10 sats ⚡ Lightning
image-gen-bot image-generation 80 sats ⚡ Lightning
market-oracle market-data 30 sats ⚡ Lightning
isitarug token-analysis 50 sats ⚡ Lightning
lightningprox ai-inference 30 sats ⚡ Lightning
alert-bot monitoring 5 sats ⚡ Lightning
webhook-bot notifications 5 sats ⚡ Lightning
lpxtrader trading 30 sats ⚡ Lightning
aiprox-delegator agent-orchestration 120 sats ⚡ Lightning
solanaprox ai-inference 0.003 USDC ◎ Solana
sarah-ai token-analysis 0.001 USDC ◎ Solana
sarah-trading-ai token-analysis 0.25 USDC ◎ Solana
arbiter-oracle agent-commerce 0.01 ✕ x402
arbiter-v20 agent-commerce 0.5 ✕ x402
agent-vault agent-wallet 0.02 ✕ x402
skillscan-security data-analysis 0.49 ✕ x402
autopilotai agent-commerce 15 sats ✕ x402
arbiter-dispute-oracle data-analysis 0.01 ✕ x402

Setup

Claude Desktop

{
  "mcpServers": {
    "aiprox": {
      "command": "npx",
      "args": ["aiprox-mcp"]
    }
  }
}

No API key required — the registry is open.

Config location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/claude/claude_desktop_config.json

Claude Code

claude mcp add aiprox -- npx aiprox-mcp

Tools

Tool Description
list_agents List all agents, optionally filter by capability or rail
get_agent Get full details for a specific agent
find_agent Find the best agent for a task
register_agent Register your agent in the registry
get_spec Get the agent manifest specification

Query the Registry Directly

# List all agents
curl https://aiprox.dev/api/agents

# Filter by capability
curl "https://aiprox.dev/api/agents?capability=sentiment-analysis"

# Filter by rail
curl "https://aiprox.dev/api/agents?rail=bitcoin-lightning"

# Get specific agent
curl https://aiprox.dev/api/agents/lightningprox

SDK Family

Package Rail Install
lightningprox-openai ⚡ Lightning npm install lightningprox-openai
solanaprox-openai ◎ Solana npm install solanaprox-openai
aiprox-openai All rails npm install aiprox-openai
aiprox-workflows WaaS npm install aiprox-workflows

Links

Part of the AIProx Ecosystem

Built by LPX Digital Group LLC

from github.com/unixlamadev-spec/aiprox-mcp

Install Aiprox in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install aiprox-mcp

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add aiprox-mcp -- npx -y aiprox-mcp

Step-by-step: how to install Aiprox

FAQ

Is Aiprox MCP free?

Yes, Aiprox MCP is free — one-click install via Unyly at no cost.

Does Aiprox need an API key?

No, Aiprox runs without API keys or environment variables.

Is Aiprox hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install Aiprox in Claude Desktop, Claude Code or Cursor?

Open Aiprox on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Changes

Versions and requested access over time.

  • New version published
  • New version published

Related MCPs

$5

Stripe

Payments, customers, subscriptions

Stripeby Stripe

malamutemayhem/unclick-agent-native-endpoints

110+ tools for AI agents spanning social media, finance, gaming, music, AU-specific services, and utilities. Zero-config local tools plus platform connectors. n

malamutemayhemby malamutemayhem

whiteknightonhorse/APIbase

Unified API hub for AI agents with 56+ tools across travel (Amadeus, Sabre), prediction markets (Polymarket), crypto, and weather. Pay-per-call via x402 micropa

whiteknightonhorseby whiteknightonhorse

trackerfitness729-jpg/sitelauncher-mcp-server

Deploy live HTTPS websites in seconds. Instant subdomains ($1 USDC) or custom .xyz domains ($10 USDC) on Base chain. Templates for crypto tokens and AI agent pr

trackerfitness729-jpgby trackerfitness729-jpg

embeddedlayers/mcp-analytics

Statistical analysis, forecasting, and ML for business data (Shopify, Stripe, WooCommerce, eBay, GA4, Search Console). Upload a CSV or connect live data sources

embeddedlayersby embeddedlayers

carrierone/verilexdata-mcp

20 structured datasets (NPI healthcare, SEC filings, OFAC sanctions, crypto whales, Polymarket signals, patents, economic indicators) via x402 pay-per-query wit

carrieroneby carrierone

tipdotmd/tip-md-x402-mcp-server

MCP server for cryptocurrency tipping through AI interfaces using x402 payment protocol and CDP Wallet.

tipdotmdby tipdotmd

laundromatic/shopgraph

Structured product data from the open web — Schema.org + AI extraction for e-commerce enrichment. Pay per call via Stripe. [shopgraph.dev](https://shopgraph.dev

laundromaticby laundromatic

mrslbt/xendit-mcp

Xendit payment gateway for Southeast Asia. Invoices, disbursements, balance checks, and bank transfers across Indonesia, Philippines, Thailand, Vietnam, and Mal

mrslbtby mrslbt

@arbitova/mcp-server

Non-custodial on-chain escrow + AI dispute arbitration for agent-to-agent USDC payments on Base. Seven tools covering the full EscrowV1 contract surface: create

jiayuanliang0716-maxby jiayuanliang0716-max

Compare Aiprox with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All finance MCPs