Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

jblaz6335/mcp-server-aidatamarketplace

БесплатноПоддерживается

Local stdio adapter for discovering, previewing, and purchasing live agent data APIs, including vendor risk, company intelligence, transaction preflight, and EV

GitHubEmbed

Описание

Local stdio adapter for discovering, previewing, and purchasing live agent data APIs, including vendor risk, company intelligence, transaction preflight, and EVM reads. Free discovery and previews require no wallet; optional paid calls settle in Base USDC through x402 v2, with auto-pay disabled by default.

README

Base Mainnet x402 Protocol x402scan Model Context Protocol npm Tests

Decision-ready machine-to-machine reports paid per request with the x402 Payment Protocol on Base Mainnet.

No API key. No account. No subscription. Buy one current answer in USDC when a workflow needs it. The catalog includes agent-readiness audits, vendor onboarding risk, transaction preflight, live x402 opportunity research, company intelligence, endpoint verification, website due diligence, VIN safety, market checks, security research, and atomic EVM reads.

Every billable route accepts ?preview=true. The preview is a live contract proof showing the source, freshness, required inputs, and response shape. It deliberately withholds the decision-ready values delivered by the paid call.

Start with the free find_marketplace_products MCP tool. Give it the buyer's task in plain language and it returns three ranked live products plus one recommended_purchase containing the exact price, required inputs, and ready preview and paid-call payloads. Replace the example inputs with the buyer's real values, preview when available, and only use the paid call after the user authorizes the listed price and payment method.

Buyer-ready outcomes

Product What the paid call delivers Price (USDC)
agent_readiness_audit Scored evidence and prioritized repairs for the discovery files agents use to find, understand, and buy from a site 0.025
evm_receipt Live transaction status, gas use, contract creation details, and normalized event logs across Base, Ethereum, or Arbitrum 0.003
evm_block_number Current block height from a supported EVM network without maintaining an RPC integration 0.001
vendor_risk_report Vendor onboarding decision with current identity, sanctions, domain, TLS, hosting, and website evidence 0.020
x402_market_opportunity_report Live x402 demand, competition, health, pricing, and build recommendation 0.010
transaction_preflight Read-only transaction simulation evidence before signing 0.005
company_intelligence Company enrichment and vendor research brief 0.010
x402_endpoint_preflight x402 endpoint verification, challenge linting, and buyer compatibility evidence 0.003
website_due_diligence Website trust, security, metadata, and risk evidence in one report 0.040
vehicle_safety_report VIN decode, recall, complaint, and buyer safety evidence 0.008
crypto_market_snapshot Current multi-asset pricing and market context 0.004

These are complete paid deliverables, not teaser text. The lower-level catalog remains available for workflows that need a single chain read, filing, sanctions check, quote, or verification result.

If this open-source buyer adapter saves you integration work, you can support its maintenance on Ko-fi.

Install

npx -y dopaminedesk-ai-data-marketplace-mcp

Use it from any stdio-compatible MCP client:

{
  "mcpServers": {
    "dopaminedesk-data-marketplace": {
      "command": "npx",
      "args": ["-y", "dopaminedesk-ai-data-marketplace-mcp"]
    }
  }
}

Official MCP Registry name: io.github.jblaz6335/ai-data-marketplace.

Small tool list for existing agents

Set X402_TOOL_MODE=compact to expose just find_marketplace_products and purchase_marketplace_product. All live products remain available through those two tools. The default full mode keeps the product-specific tools for existing integrations.

No environment variable or wallet key is required to start the default server. A wallet is needed only if the buyer chooses locally signed auto-pay. The remote /mcp URL is a separate authenticated publisher integration, not the public stdio install URL.

Ready-to-copy configurations and a free end-to-end client check are in examples/README.md. The check discovers a real product and requests its free preview. It never signs or submits a payment.

Buy with credits instead of configuring a wallet

The service is already indexed in APIHub's external x402 catalog. Buyers with APIHub credits can ask its proxy to sign and settle a marketplace call without keeping a Base wallet or gas in the calling process:

npx @apihubio/cli register
npx @apihubio/cli topup 5
npx @apihubio/cli call https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/evm_block_number

APIHub is an independent third party with its own account, credit, markup, and terms. Direct x402 remains the self-custody path. Both routes settle the protected endpoint before its paid result is delivered.

Inspect a live contract

curl "https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/company_intelligence?preview=true&domain=example.com"

The proof includes source, freshness, request parameters, top-level fields, response shape, and a purchase block. Decision-ready values remain in the paid result.

Optional one-call purchasing

The current npm release can complete the x402 challenge, authorization, retry, and settlement automatically. Install the public package directly:

npx -y dopaminedesk-ai-data-marketplace-mcp

The buyer key stays inside the local MCP process and is never sent to the marketplace. Use a dedicated low-balance Base wallet, not a primary wallet.

{
  "mcpServers": {
    "dopaminedesk-data-marketplace": {
      "command": "npx",
      "args": ["-y", "[email protected]"],
      "env": {
        "X402_AUTO_PAY": "true",
        "X402_EVM_PRIVATE_KEY": "YOUR_DEDICATED_BUYER_WALLET_KEY",
        "X402_MAX_PAYMENT_USDC": "0.25"
      }
    }
  }
}

Call a product with auto_pay: true. The adapter refuses disabled, conflicting, invalid, or over-cap purchases. It never falls back to an uncapped payment.

For automated client installation, see llms-install.md. Its default configuration exposes free discovery and previews without collecting a wallet key or enabling automatic payment.

Verification and engineering scope

The public verification hub and machine verification record expose the production evidence.

I built this adapter around these constraints:

  • the production OpenAPI contract is the source of truth for tool discovery;
  • live contract proofs verify the source and schema without replacing the paid product;
  • automatic purchasing is opt-in, locally signed, and protected by a hard per-call cap;
  • conflicting, malformed, disabled, and over-cap payment attempts fail closed;
  • settlement details stay attached to the delivered result for reconciliation.

Run the verification suite locally:

npm ci
npm test

Production contracts

The MCP adapter builds its tool list from the production OpenAPI document. Counts, prices, availability, data mode, and source declarations come from the live contract instead of a hand-written endpoint list.

Every billable product uses x402 v2 exact payments on Base mainnet through the Coinbase CDP facilitator:

  1. Call the endpoint and read the base64 PAYMENT-REQUIRED response header.
  2. Sign the exact authorization with a compatible x402 buyer client.
  3. Retry with PAYMENT-SIGNATURE.
  4. Read settlement details from PAYMENT-RESPONSE.

See PAYMENT_FLOW.md for the manual and legacy confirmed-transaction paths.

Published distribution

License

MIT License. Open-source MCP buyer adapter and marketplace client.

from github.com/jblaz6335/mcp-server-aidatamarketplace

Установка jblaz6335/mcp-server-aidatamarketplace

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/jblaz6335/mcp-server-aidatamarketplace

FAQ

jblaz6335/mcp-server-aidatamarketplace MCP бесплатный?

Да, jblaz6335/mcp-server-aidatamarketplace MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для jblaz6335/mcp-server-aidatamarketplace?

Да, требуются переменные окружения: X402_AUTO_PAY, X402_EVM_PRIVATE_KEY, X402_MAX_PAYMENT_USDC. Unyly подставит их в конфиг при установке.

jblaz6335/mcp-server-aidatamarketplace — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить jblaz6335/mcp-server-aidatamarketplace в Claude Desktop, Claude Code или Cursor?

Открой jblaz6335/mcp-server-aidatamarketplace на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

$5

Stripe

Payments, customers, subscriptions

Stripeавтор: 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

malamutemayhemавтор: 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

whiteknightonhorseавтор: 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-jpgавтор: 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

embeddedlayersавтор: 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

carrieroneавтор: carrierone

tipdotmd/tip-md-x402-mcp-server

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

tipdotmdавтор: 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

laundromaticавтор: laundromatic

mrslbt/xendit-mcp

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

mrslbtавтор: 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-maxавтор: jiayuanliang0716-max

Compare jblaz6335/mcp-server-aidatamarketplace with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории finance