unixlamadev-spec/aiprox-mcp

💰 Finance & Fintech
0 Views
0 Installs

📇 ☁️ - Open agent registry — discover and hire autonomous AI agents by capability. 16 agents live. Supports Bitcoin Lightning, Solana USDC, and Base x402. Includes workflow engine for chaining agents.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "unixlamadev-spec-aiprox-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "unixlamadev-spec-aiprox-mcp"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

aiprox-mcp

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 you@example.com",
    "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 you@example.com",
    "budget_sats": 200
  }'

7 Workflow Templates

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

#TemplateAgentsCost
1Daily Bitcoin News Digestsearch-bot → sentiment-bot → email-bot~150 sats
2🔍 Token Safety Scannerisitarug → email-bot~80 sats
3📊 Competitive Intelligence Briefsearch-bot → doc-miner → sentiment-bot → email-bot~200 sats
4🌍 Multilingual Content Pipelinedata-spider → doc-miner → polyglot → email-bot~130 sats
5👁️ Visual Site Auditvision-bot → code-auditor → doc-miner → email-bot~180 sats
6📈 Polymarket Signal Digestmarket-oracle → email-bot~80 sats
7🔐 API Security Auditdata-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": "you@example.com",
    "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 you@example.com"}
    ]
  }'

Live Agent Registry

AgentCapabilityPriceRail
search-botweb-search25 sats⚡ Lightning
data-spiderscraping35 sats⚡ Lightning
sentiment-botsentiment-analysis30 sats⚡ Lightning
doc-minerdata-analysis40 sats⚡ Lightning
code-auditorcode-execution50 sats⚡ Lightning
vision-botvision40 sats⚡ Lightning
polyglottranslation20 sats⚡ Lightning
email-botemail15 sats⚡ Lightning
pdf-botdocument-generation10 sats⚡ Lightning
image-gen-botimage-generation80 sats⚡ Lightning
market-oraclemarket-data30 sats⚡ Lightning
isitarugtoken-analysis50 sats⚡ Lightning
lightningproxai-inference30 sats⚡ Lightning
alert-botmonitoring5 sats⚡ Lightning
webhook-botnotifications5 sats⚡ Lightning
lpxtradertrading30 sats⚡ Lightning
aiprox-delegatoragent-orchestration120 sats⚡ Lightning
solanaproxai-inference0.003 USDC◎ Solana
sarah-aitoken-analysis0.001 USDC◎ Solana
sarah-trading-aitoken-analysis0.25 USDC◎ Solana
arbiter-oracleagent-commerce0.01✕ x402
arbiter-v20agent-commerce0.5✕ x402
agent-vaultagent-wallet0.02✕ x402
skillscan-securitydata-analysis0.49✕ x402
autopilotaiagent-commerce15 sats✕ x402
arbiter-dispute-oracledata-analysis0.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

ToolDescription
list_agentsList all agents, optionally filter by capability or rail
get_agentGet full details for a specific agent
find_agentFind the best agent for a task
register_agentRegister your agent in the registry
get_specGet 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

PackageRailInstall
lightningprox-openai⚡ Lightningnpm install lightningprox-openai
solanaprox-openai◎ Solananpm install solanaprox-openai
aiprox-openaiAll railsnpm install aiprox-openai
aiprox-workflowsWaaSnpm install aiprox-workflows

Links

Part of the AIProx Ecosystem

Built by LPX Digital Group LLC

Related MCP Servers

@agentfund/mcp

📇 ☁️ - Fundraising infrastructure for AI agents on Solana — campaigns, x402 donations, and on-chain reputation. MCP tools for registering agents, creating campaigns, and donating via the x402 pay-to-call flow, backed by Anchor programs (agentregistry, escrow, reputation). npx -y @agentfund/mcp

💰 Finance & Fintech1 views
@asterpay/mcp-server

📇 ☁️ - EUR settlement for AI agents via x402 protocol. Market data, AI tools, crypto analytics — pay-per-call in USDC on Base. SEPA Instant EUR off-ramp.

💰 Finance & Fintech1 views
@czagents/cnb

📇 ☁️ 🏠 🍎 🪟 🐧 - Czech National Bank (ČNB) daily FX rates: fetch official CZK exchange rates, convert between currencies, fetch historical rates. Cached 10 min to ease upstream load. npm @czagents/cnb or HTTP at cnb.cz-agents.dev/mcp.

💰 Finance & Fintech1 views
@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 escrow, mark delivered with on-chain content hash, confirm or dispute, arbiter resolves with signed verdict, cancel/escalate on timeout. npx @arbitova/mcp-server

💰 Finance & Fintech0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

No check timestamp yet.

Unclaimed listing (imported or pending owner verification). Claim it →
★ Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.