Nexez — Agentic Commerce
About
Agentic-commerce MCP: search across merchants, fetch structured offer manifests, and dry-run checkout + negotiation before buying.
Details
- Author
- Flyger1an
- Downloads
- 330
- Categories
- Finance, Search, Knowledge Base, Remote MCP
Jump to
- Agent-optimized pages with JSON-LD, llms.txt, agent.json, MCP endpoint, and semantic HTML
- Hybrid booking system
- Fixed Pricing → instant direct booking
- Negotiable services → smart rules + LLM-powered negotiation
- Persistent negotiation links – agents can continue conversations even when offline
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Nexez — Agentic CommerceCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Follow the repository README to install the server and add its MCP configuration to your client.
nexez_search
Search across all Nexez merchants for services/products matching a buyer request. Returns ranked listings with offers + agent.json URLs.
nexez_directory
Browse the cross-merchant Nexez directory (optionally filtered by category, query, minimum readiness, or location).
nexez_get_page
Fetch a listing's full structured agent manifest (seller profile, offers, actions) by slug.
nexez_validate_checkout
Dry-run a checkout for an offer BEFORE paying — validates the offer, currency, and payment readiness. Never charges.
nexez_validate_negotiation
Dry-run a negotiation proposal against the seller’s rules BEFORE submitting. Returns the rules evaluation. Never writes.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"nexez \u2014 agentic commerce": {
"nexez": {
"type": "streamable-http",
"url": "https://nexez.app/mcp"
}
}
}
}
McpServers
{
"nexez": {
"type": "streamable-http",
"url": "https://nexez.app/mcp"
}
}
Agentic-commerce MCP: search across merchants, fetch structured offer manifests, and dry-run checkout + negotiation before buying.
Commerce infrastructure built for buyer agents and the businesses they transact with.
Nexez turns a business's offers into public, structured listings that humans can browse and AI agents can search, understand, compare, validate, negotiate, and take to checkout. Sellers maintain one source of truth while Nexez publishes the web experience, machine-readable artifacts, transaction workflows, and operational controls around it.
Nexez is more than an AI landing-page builder: this repository contains the seller platform, buyer-agent interfaces, commerce protocols, payment and negotiation lifecycle, integrations, analytics, and release-safety systems.
- Structured listings for services and products, including fixed-price and negotiable offers.
- Human-readable public pages with semantic HTML and JSON-LD.
- Per-listingagent.json,llms.txt, MCP manifest and JSON-RPC endpoint, and scoped OpenAPI.
- Platform-wide agent index, search API, MCP endpoint, OpenAPI document, andllms.txt.
- Seller storefronts that group multiple listings and expose storefront-level agent artifacts.
- Verified custom domains, branding, themes, reusable templates, drafts, and controlled publishing.
- Agent-readiness scoring, crawlability checks, deterministic and LLM-assisted simulation, AI optimization, and authenticated competitor analysis.
- Intent search with location, industry, readiness, capability, and price signals.
- Public machine discovery through/.well-known/agent.json,/.well-known/mcp.json,/agent-pages.json,/agent.json,/openapi.json, and/llms.txt.
- MCP tools for search, directory browsing, page inspection, dry-run checkout validation, and dry-run negotiation validation.
- REST APIs, owner API keys, signed outbound webhooks, and copy-paste buyer-agent examples.
- Published TypeScript SDK:npm install @nexez/agent-sdk.
- Published Python SDK:python -m pip install nexez-agent-sdk.
- Published OpenClaw discovery skill:openclaw skills install nexez-agent-discovery.
- Published OpenClaw tool plugin:openclaw plugins install npm:@nexez/openclaw-nexez.
- WordPress and Shopify integrations inplugins, including Shopify catalog sync and proxied machine artifacts.
- Fixed-price checkout through Stripe Connect, with the seller as merchant of record and Nexez application fees captured from the connected account.
- Negotiable offers with budget, timeline, scope, seller rules, asynchronous decisions, agreement state, status tokens, and payment handoff.
- Dry-run validation before consequential checkout or negotiation actions.
- Short-lived action-approval tokens, explicit buyer approval, and stable idempotency keys.
- Persistent orders, buyer receipts and order portals, refunds, disputes, reviews, and transaction-livemode provenance.
- Reconciliation workers and deduplicated webhook processing for payment and billing state.
- ACP and UCP product feeds for agent discovery.
OpenAI ACP and Google UCP checkout-session routes are implemented but fail closed until the corresponding partner enrollment and shared credentials are enabled. Their product feeds remain available for discovery. Seedocs/agentic-commerce-enrollment.mdfor the deployment boundary.
- Multi-listing and multi-storefront management with plan-aware publishing limits.
- Stripe, Shopify, Square, Calendly, Acuity, and Google Calendar integration surfaces.
- Provider-aware catalog synchronization that preserves manually authored offers.
- Live availability, booking webhooks, outbound automation webhooks, and integration health.
- Agent-versus-human traffic analytics, funnel and conversion reporting, offer performance, finance reporting, negotiation metrics, filtering, and exports.
- Team invitations and collaboration, billing portal, subscription reconciliation, support, referrals, saved pages, and notification workflows.
- Nexie buyer-agent threads with streaming responses and structured approval cards.
- Saved sellers and searches, scheduled agent tasks, notifications, referrals, and order tracking.
- Buyer data export and deletion controls that preserve a seller account when the same identity also operates a business on Nexez.
Nexez treats public discovery and consequential actions as different trust boundaries:
- Discovery artifacts expose published seller information without exposing drafts or secrets.
- Checkout and negotiation support side-effect-free validation before action.
- Mutating agent flows require matching approval context and are protected against retries.
- Database row-level security and explicit grants protect authenticated and service-only data.
- Provider credentials live in private server-side storage and are excluded from public artifacts.
- Rate limits, signed webhooks, replay protection, scoped status tokens, money constraints, and append-only evidence ledgers provide defense in depth.
- Test and live transaction provenance remains explicit.
The internal security and privacy baseline is documented indocs/trust/README.md. It is a control framework, not a claim that Nexez has completed a SOC 2, PCI DSS, or other independent assessment.
- docs/agent-action-safety.md
- docs/commerce-certification.md
- docs/agent-submission-pack.md
- Application:Next.js 16 App Router, React 19, TypeScript, Tailwind CSS, and Radix/shadcn UI
- Data and identity:Supabase Auth, PostgreSQL, Row Level Security, and Storage
- Commerce:Stripe Connect and Stripe Billing
- AI:deterministic fallbacks plus configurable OpenAI-compatible and native adapter layers for OpenAI, Gemini, Claude, and Grok
- Deployment:Vercel, scheduled workers, and GitHub Actions
- Quality:Vitest, Testing Library, Playwright, ESLint, TypeScript, protocol gauntlets, and live non-money-moving smoke checks
The full platform requires private Supabase and service configuration. Optional integrations remain dormant or fail closed when their credentials are absent.
npm run lint npm test npm run build npm run certify:commerce
certify:commerceis designed not to move money. Deliberate live lifecycle checks are governed bydocs/commerce-certification.md.
Proprietary — Copyright © 2026 Nexez. All rights reserved. Source-available for reference only; not licensed for reuse or redistribution. SeeLICENSE.
Keyless MCP server giving AI agents SEC EDGAR data: company lookup, recent filings, full-text search, XBRL financials and insider trades. Free tier.
GPU compute price indices (spot, on-demand, DePIN) over MCP — catalog, search, price, verify. Every value carries a verify URL for citation. Source-opaque, key-free.
Search Marktplaats.nl and 2dehands.be second-hand listings: price/condition/distance filters, seller checks and new-listing monitoring.
MCP server for Korean corporate disclosures (DART/OpenDART): filing search, financials, XBRL, auditor-grade audit-report parsing (opinions, KAM, going concern, ICFR findings), and valuation data
SEC financial data API — 16 MCP tools for company health scores, insider trades, sentiment analysis, filings search, and screening. Real data from SEC EDGAR.
This MCP (Model Context Protocol) server provides integration with Wiki.JS for searching and listing pages from Agent Voice Response Wiki.JS instance.
Fetch, convert, and search AWS documentation pages, with recommendations for related content.
Search campgrounds around the world on campertunity, check availability, and provide booking links.
Embeddings, vector search, document storage, and full-text search with the open-source AI application database
Eagle MCP Server is a local Model Context Protocol bridge that lets AI assistants (e.g. Cursor, Claude) access your Eagle media library so you can tag, categorize, search, and batch-organize assets with natural language.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.


