BizNetAI MCP Server
OfficialProvides tools for searching products and merchants across Shopify storefronts, returning normalized product and merchant data for AI agents.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@BizNetAI MCP Serverfind me organic coffee beans in the US"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
BizNetAI MCP Server
A hosted Model Context Protocol server that routes natural-language shopping queries to live, independent merchant storefronts and returns normalized product and merchant results — built for AI agents and shopping assistants that need real-time commerce data without integrating each merchant individually.
This repository documents the hosted service — there is nothing to install or run locally. Point your MCP client at the endpoint below with an API key and start calling tools.
Merchant Coverage
18,000+ live merchants and growing, across the US and Canada.
Current focus verticals:
skincare · haircare · cosmetics · personal_care · sports_active_wear · clothing · accessories · fine_jewelry · fashion_jewelry · specialty_food · gourmet_food · food_and_beverage · home_decor · home_furnishings · candles_fragrance · wellness · luxury · electronics · consumer_goods · pet · baby_kids
Use list_categories for the authoritative, up-to-date list at query time — new verticals are added periodically.
Use find_merchants for live merchant coverage — also updated periodically.
Related MCP server: Clind MCP Server
Endpoint
URL |
|
Transport |
|
Auth | Required — |
The server is stateless per request — there is no session handshake to perform first.
Getting an API Key
Access is self-serve:
Submit a request with your email, name, and a short description of your use case:
curl -X POST https://api.merchant.registration.consumergenie.net/api/developer-keys \ -H "Content-Type: application/json" \ -d '{"email": "you@example.com", "name": "Your Name", "reason": "Building an AI shopping assistant"}'Once approved, you'll receive an email with your key (
bnai_live_...). It's shown once and never stored in plaintext anywhere — if you lose it, request a new one.
Each key has its own rate limit (default 60 requests/minute). Exceeding it returns
429 with a Retry-After header; a missing, invalid, or revoked key returns 401.
Connecting
MCP client (Claude Desktop, Claude Code, etc.)
Most clients speak stdio, so bridge through
mcp-remote, passing your key as a header:
{
"mcpServers": {
"biznetai": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://biznetaimcp.consumergenie.net/mcp",
"--header", "Authorization:Bearer ${BIZNETAI_API_KEY}"
]
}
}
}Raw HTTP
BASE_URL="https://biznetaimcp.consumergenie.net/mcp"
API_KEY="bnai_live_..."
curl -X POST "$BASE_URL" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "Authorization: Bearer $API_KEY" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_categories","arguments":{}}}'Tools
list_categories
Return the full BizNetAI merchant category vocabulary. Useful for understanding what kinds of merchants are available before querying.
find_merchants
Find live merchants matching a query — useful when you want merchant identity before doing a custom product lookup.
query str required Natural language search query
country str required ISO country code (e.g. US, CA)
limit int 0 Max merchants to return (0 = all live matches)list_product_varieties
List the product varieties available for a country, with how many results each has.
find_products always resolves your query to one of these, so this is useful for
discovering what specific product searches are likely to succeed — and how many
results to expect — before calling it.
country str required ISO country code (e.g. US, CA)Returns a list of variety objects:
{
"variety": "wireless headphones",
"product_count": 50
}Varieties are country-specific — the same product type can exist under a differently-worded variety, or not at all, in a different country.
find_products
Search for products by matching your query to one of BizNetAI's curated product
varieties (e.g. "wireless headphones", "vitamin c serum") and returning that
variety's already-ranked top results. Call list_product_varieties first if you
want to see upfront what's available for a country before searching.
query str required Natural language product search query
country str required ISO country code (e.g. US, CA)
limit int 0 Page size (0 = server default)
offset int 0 Results to skip, for paging beyond the first pageResults are capped by how many products the matched variety has (usually around 50,
sometimes fewer for a niche search) — offset/limit beyond that returns whatever's
left, not an error. A query that doesn't match any known variety returns [].
Returns a list of normalized product objects:
{
"title": "Vitamin C Brightening Serum",
"description": "...",
"price_min": 24.60,
"price_max": 24.60,
"currency": "USD",
"available": true,
"url": "https://merchant.com/products/vitamin-c-serum",
"image_url": "https://cdn.shopify.com/...",
"store_domain": "merchant.com",
"mcp_endpoint": "https://merchant.com/api/mcp",
"merchant_position": 0,
"relevance_score": 0.79
}available reflects whether at least one product variant was in stock as of the last
catalog refresh (boolean only — exact stock counts aren't available from all merchant
backends). relevance_score is a similarity score (higher is more relevant) — there's
no cutoff applied, so you can use it yourself to judge what's a good enough match for
your use case.
Rate Limits & Errors
Status | Meaning |
| Missing, malformed, invalid, or revoked API key |
| Rate limit exceeded — see |
Support
Questions or issues with the API — email the address you used to request your key, or open an issue on this repository.
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityDmaintenanceAn MCP server that connects AI assistants to SearchAgora, enabling users to search for, discover, and purchase products across the web through natural language conversations.62
- Flicense-quality-maintenanceA Shopify-focused MCP server that enables AI agents to manage store operations like order tracking, product discovery, and checkout link generation. It facilitates customer-facing interactions including shipping estimates and real-time inventory searches.
- Flicense-qualityDmaintenanceEnables AI assistants to manage products, shopping carts, and orders in an online store through a well-defined MCP API.
- Flicense-qualityCmaintenanceHosted MCP server connecting Shopify, Klaviyo, GA4, Meta Ads, Google Ads, Xero, Gorgias and 20+ e-commerce data sources so AI assistants can answer merchant questions that span every source at once.
Related MCP Connectors
Shopping MCP for AI agents: search, compare, Amazon buy links. Auto-register.
Federated commerce search across independent WooCommerce merchants. Keyless, read-only MCP server.
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/biznetai/biznetai-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server