AI E-Commerce Agent
September 8, 2026 · View on GitHub
An AI agent for e-commerce and CRO — Amazon review mining, marketplace intelligence, local business leads, and cross-border expansion research — backed by real marketplace and maps APIs.
Part of Agency Agents OS, an open ecosystem of specialized AI agents for real business work.
Related Projects
- Agency Agents OS — the central catalog this repo is part of.
- ai-seo-agent — its live local-SEO endpoints (
seo.business_listings,seo.business_profile,seo.local_serp) overlap with this repo's local-business-leads sub-agent. - ai-competitor-intelligence-agent — cross-cuts this repo's marketplace intelligence with ads and social data.
- ai-reputation-agent — shares this repo's Amazon/Google review-data needs.
- MuAPI MCP docs — connect this repo's
SKILL.mdfiles via MCP. - MuAPI access keys — create the API key this agent needs.
What this covers
This repo is the umbrella for anything an agency or in-house team would call "the AI e-commerce agent": mining customer reviews for product and CRO decisions, sizing up marketplace competitors, qualifying local business leads, and scoping what a store needs before entering a new country.
Sub-agents
| Agent | Does | Status |
|---|---|---|
| Amazon Review Mining | Extract themes, complaints, and feature requests from a product's reviews to inform CRO/product decisions | Coming Soon |
| Amazon Market Intelligence | Competitor listing, pricing, and ranking analysis for a product category | Coming Soon |
| Local Business Leads | Find and qualify local business leads via maps/location data | Blueprint |
| Cross-Border E-Commerce | Research market-entry requirements and localization needs for expanding a store to a new country | Coming Soon |
Required Muapi APIs
ecommerce.product_reviews— pull and structure a product's review history for theme/complaint/feature-request mining.ecommerce.marketplace_search— competitor listing, pricing, and ranking data for a product category.local.business_search— maps/location-based business discovery and qualification data.
See each sub-agent's SKILL.md for the specific capabilities it uses.
Setup
- Create a Muapi account and API key at muapi.ai.
- Review the Muapi API quickstart and OpenAPI schema for the e-commerce and local-data endpoints.
- Load the
SKILL.mdfor the sub-agent you need into your agent runtime (hosted agent, MCP client, or custom LLM app), or follow it manually.
Using with an AI agent
Every sub-agent's SKILL.md is model- and runtime-agnostic — it's plain Markdown, so it works with any LLM agent, not just Claude. Two integration paths:
As an MCP connection (the agent gets live Muapi tools):
Muapi runs an MCP server at https://api.muapi.ai/mcp that any MCP-compatible client can connect to — Cursor, Windsurf, Claude, or your own custom agent.
- Cursor / Windsurf / other clients with a header field: connect to
https://api.muapi.ai/mcpwith anAuthorization: Bearer YOUR_MUAPI_KEYheader. - claude.ai / Claude Cowork / other connector UIs with no header field: use the URL-embedded key form instead,
https://api.muapi.ai/mcp/YOUR_MUAPI_KEY, via Settings → Connectors → Add custom connector. - Claude Code / Claude Desktop:
claude mcp add muapi -e MUAPI_API_KEY=YOUR_MUAPI_KEY -- muapi mcp serve(uses the muapi CLI's stdio transport — Claude Code's HTTP MCP client doesn't reliably inject tools).
Full setup details for every client: muapi.ai/docs/mcp.
As agent instructions (any LLM follows the workflow directly):
Drop a sub-agent's SKILL.md into a Claude Code project's .claude/skills/ directory, paste it into a custom-GPT/Project's system instructions, hand it to an autonomous agent framework as a tool spec, or attach it directly in a chat conversation — then ask the agent to follow it.
Read-only vs. write actions
Every action in this repo is read-only — reviews, listings, and business records are pulled and analyzed, never modified or posted. Nothing here writes back to a marketplace, a maps listing, or a storefront.
Status and limitations
Local Business Leads is Blueprint — its local.business_search capability is backed by Muapi's already-live local-SEO endpoints (seo-business-listings, seo-business-profile). The other three sub-agents are Coming Soon: they depend on marketplace data capabilities (ecommerce.*) that are not yet live on Muapi. Nothing here except Local Business Leads should be treated as producing real data until those capabilities ship.
Contributing
See Agency Agents OS CONTRIBUTING.md.