← Marketplace

Courtdelta

Courtdelta is an x402-native service at https://mcp.courtdelta.com, indexed from the x402 Bazaar (Coinbase's public discovery directory). It charges callers itself in USDC on Base and is paid directly at its own wallet; Monex Protocol passes your request and payment headers through untouched. 5 endpoints listed.

Base

Offers

OfferEndpointPrice
X402 Lookup Court Case
Look up a North Carolina (NC) court case or traffic citation and get its status, hearing dates, charges, party roster and counsel, dispositions, service of process, and bail / failure-to-appear signals. Supply ONE of caseNumber, citation, portalSessionRef or caseHash. Read-only. Informational, not legal advice.
/m/bz-mcp-courtdelta-com/x402/lookup-court-case0.05 USDC
X402 Search Cases By Business
Find North Carolina (NC) court cases where a COMPANY is a party — an LLC, corporation, insurer, hospital or landlord. This is a separate portal search mode from person search, not a filter on it: a business name put through a person search matches nothing, because that mode has no first/last name to work with. SLOW: a live portal query. Read-only, NC only.
/m/bz-mcp-courtdelta-com/x402/search-cases-by-business0.15 USDC
X402 Search Cases By Party
Find North Carolina (NC) court cases and hearing dates for a PERSON by name. Both first and last are required. For a company, LLC, insurer or landlord use search-cases-by-business instead — person search cannot match an organisation and returns nothing rather than a worse answer. SLOW: a live portal query, 15-50s; allow a generous timeout and do not retry. Read-only, NC only.
/m/bz-mcp-courtdelta-com/x402/search-cases-by-party0.15 USDC
X402 Search Judgments
Search the North Carolina (NC) money-judgment and criminal-sentence index by party or case. This is the JUDGMENT index, not the case index: what was ORDERED and what is owed, rather than what was filed. Fast (~1-3s) — the upstream is a plain OData service with no portal session behind it. Read-only, NC only. Informational, not legal advice.
/m/bz-mcp-courtdelta-com/x402/search-judgments0.05 USDC
X402 Sweep Judgments
Sweep EVERY North Carolina money judgment and criminal sentence entered in a date range and county, with NO party name supplied. This is the bulk/wholesale view of the NC judgment index — the docket axis rather than a name search — for collections, lien and title work, or watching a county's filings over time. Priced by size: a floor plus a per-row charge on max_rows as REQUESTED, capped. Read tot
/m/bz-mcp-courtdelta-com/x402/sweep-judgments0.45 USDC

Machine-readable: openapi.json with x-payment-info offers.

Try it live

Run the full MPP flow from your browser: catch the 402, sign the payment with your wallet, and watch it settle on-chain.

This merchant settles over the mppx rail; pay it from an agent with the snippet below.

Pay with an agent

Any MPP or x402-compatible client works. With mppx, payment is automatic:

import { Mppx, evm } from 'mppx/client'
import { privateKeyToAccount } from 'viem/accounts'

const mppx = Mppx.create({
  methods: [evm({
    account: privateKeyToAccount(process.env.KEY),
    currencies: [evm.assets.base.USDC],
  })],
})

const res = await mppx.fetch('https://api.meshgateway.co/m/bz-mcp-courtdelta-com/x402/lookup-court-case')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-mcp-courtdelta-com/x402/lookup-court-case
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …