Contents
- E-commerce SaaS: AEO Category Overview
- Shopify Japan — Grade AAA: 4 Official MCP Servers, Undisputed Leader
- BASE — Grade BB: Japan's Small Business EC Platform
- Amazon Japan (SP-API) — Grade BB: The Giant's Agent Connection Realities
- Rakuten Ichiba — Grade BB: The XML-RPC Wall
- 4-Platform Comparison and Selection Guide
- Frequently Asked Questions
All data in this report is based on real operational data collected by AI agents via the KanseiLink MCP server (as of April 9, 2026). AEO scores are calculated using KanseiLink's proprietary evaluation methodology.
E-commerce SaaS: AEO Category Overview
AI agents autonomously checking inventory, processing orders, registering products, and generating reports — this is not a hypothetical. In 2026, it's already technically achievable across most major e-commerce APIs. But this category reveals the starkest gap in AEO maturity between global and domestic Japanese platforms of any category we track.
That gap is best illustrated by the contrast between Shopify and Rakuten. Shopify launched 4 official MCP servers in March 2026 — Dev, Storefront, Customer Account, and Checkout — making every store automatically accessible to AI agents via a standard /api/mcp endpoint. Rakuten's RMS Web Service, by contrast, uses XML-RPC (SOAP envelope format) for core product and order management — a protocol architecture that pre-dates REST and creates significant compatibility friction for modern AI agents built on JSON-over-HTTP assumptions.
4 platforms surveyed. Total agent access attempts: 58. Official MCP servers: 1 (Shopify, 4 servers). Third-party MCP: 2 (Amazon, Rakuten). API only: 1 (BASE). Highest success rate: Shopify 94%. Lowest success rate: Rakuten 50%. Fastest latency: Shopify 123ms.
Why does this architectural gap matter? An AI agent that can't reliably connect to an e-commerce platform is an agent that can't automate the merchant's most repetitive operations. For merchants choosing or evaluating e-commerce platforms in 2026, AEO maturity is increasingly a material selection criterion — not just a developer convenience.
Shopify Japan — Grade AAA: 4 Official MCP Servers, Undisputed Leader
Shopify Japan MCP
AAA AEO Score 0.90Official MCP: npx @shopify/dev-mcp
Shopify is the only AAA-grade service in the e-commerce category and ranks among the highest across all categories KanseiLink tracks. A 94% success rate over 53 recorded agent reports, combined with the category's lowest latency at 123ms, places it alongside freee (accounting AAA) and Slack (communication AAA) as a benchmark for what "agent-ready" actually looks like in production.
What makes Shopify's AEO stance remarkable is the deliberate design: four distinct official MCP servers, each optimized for a specific use case. Dev MCP handles store management and administrative operations. Storefront MCP covers product catalog read access. Customer Account MCP exposes account and order data. Checkout Extensions MCP enables checkout flow automation. Agents can choose the appropriate server based on task intent rather than navigating a monolithic API.
Two significant milestones in March 2026 cemented this lead: Checkout Extensions MCP launched on March 15, and Storefront MCP was built into every Shopify store by default on March 25. The practical effect is that any Shopify store — without any additional configuration — now exposes an agent-accessible MCP endpoint.
Tips for Connecting AI Agents to Shopify
- Prefer GraphQL Admin API over REST for complex queries — single requests instead of chained REST calls
- Product price fields are strings, not numbers (e.g.,
"1500.00") — parse carefully to avoid type errors - Inventory operations require
location_id— fetch locations first viaGET /locations.json - Japanese stores frequently contain full-width characters in product names and descriptions — handle UTF-8 encoding correctly
- Real-time order and inventory updates available via webhooks at
/webhooks.json - API version (current:
2024-10) is embedded in the URL path — always use the latest stable version
BASE — Grade BB: Japan's Small Business EC Platform
BASE
BB AEO Score 0.60BASE is Japan's dominant small business and creator-focused e-commerce platform, with approximately 2 million active stores. It offers a REST API with OAuth2 authentication covering products, orders, and shop information. Agent data records 2 attempts with a 100% success rate.
The BB grade (AEO score 0.60) reflects the absence of an official MCP server and a small sample size rather than any issue with API quality itself. At 360ms average latency, it ranks second in this category. The REST API design is clean and implementable by agents with straightforward OAuth2 flows.
BASE's core customer segment — individual creators and small businesses — is not currently a primary driver of AI agent adoption, which reduces the near-term business case for MCP investment. That said, demand for automated inventory and order management from the e-commerce tooling ecosystem is growing, and MCP readiness is likely to become a differentiator as the market matures.
Tips for Connecting AI Agents to BASE
- Auth: OAuth2 (authorization code flow). Pass access token in Authorization header
- Base URL:
https://api.thebase.in/1/ - Product listing:
GET /items; Order listing:GET /orders - Japanese product names and descriptions in UTF-8
Amazon Japan (SP-API) — Grade BB: The Giant's Agent Connection Realities
Amazon Japan (SP-API)
BB AEO Score 0.60Third-party MCP: npx amazon-sp-mcp
Amazon's Selling Partner API (SP-API) is a comprehensive API covering product listings, orders, fulfillment, reports, and more. A third-party MCP server (amazon-sp-mcp) exists, making MCP-protocol connections technically possible, though not officially supported by Amazon.
The single data point (100% success) carries no statistical weight. The BB grade is a provisional trust-score-based evaluation. The primary AEO limitation is structural: SP-API access requires application and approval through Amazon Seller Central — a process that requires human authorization and cannot be completed autonomously by an agent. This "human-in-the-loop authentication" caps the AEO ceiling regardless of API quality.
The SP-API data model is also notably complex, with product data, inventory data, and order data distributed across separate API groups. An agent executing an end-to-end commerce workflow must navigate multiple distinct API namespaces, increasing implementation complexity significantly compared to Shopify's unified MCP approach.
Rakuten Ichiba — Grade BB: The XML-RPC Wall
Rakuten Ichiba (楽天市場)
BB AEO Score 0.60Third-party MCP: npx rakuten-travel-mcp (Travel API only — not applicable to Ichiba product management)
Rakuten Ichiba is Japan's largest online marketplace by GMV, but it presents the most difficult integration surface of any platform in this category for AI agents.
The core issue is protocol generation mismatch. Rakuten's RMS Web Service — the API layer for product and order management on Ichiba — uses XML-RPC with SOAP envelope formatting rather than REST. KanseiLink data recorded a schema_mismatch error during a product data update attempt, which was only resolved by constructing a proper SOAP envelope with an XML-RPC request body. Modern AI agents built on REST-and-JSON assumptions require a translation layer to handle this correctly, adding implementation overhead that no other platform in this category requires.
At 550ms average latency — more than 4x Shopify's 123ms — Rakuten is also the slowest platform in this survey. API access requires approval through Rakuten's RMS ID card process, which cannot be completed autonomously by an agent, creating the same human-authorization bottleneck seen with Amazon SP-API.
Note: the rakuten-travel-mcp third-party server covers Rakuten Travel APIs — hotel and transport search. It is not applicable to Rakuten Ichiba product or order management. No official or community MCP solution for Ichiba merchant management currently exists.
Tips for Connecting AI Agents to Rakuten APIs
- RMS API uses XML-RPC format — request bodies must include a properly formed SOAP envelope
- Rakuten Web Service APIs (product search, books, recipes) use REST+JSON and are far more agent-compatible
- Access requires application approval through Rakuten's RMS ID card process — complete this before attempting agent connections
- Set timeouts generously given 550ms average latency (recommended minimum: 5 seconds)
4-Platform Comparison and Selection Guide
| Platform | AEO Grade | MCP Server | Success Rate | Avg Latency | Agent Reports |
|---|---|---|---|---|---|
| Shopify Japan | AAA | Official ×4 | 94% | 123ms | 53 |
| BASE | BB | None (API only) | 100% | 360ms | 2 |
| Amazon (SP-API) | BB | Third-party | 100% | — | 1 |
| Rakuten Ichiba | BB | 3rd party (Travel only) | 50% | 550ms | 2 |
Recommendations for AI Agent System Designers
- Building a new AI-native commerce stack → Shopify, without question. 4 official MCP servers, 94% success rate, 123ms latency — the field ends here
- Existing BASE merchants → API integration is technically solid. Build on REST API now while awaiting official MCP development
- Amazon seller automation → SP-API is functionally comprehensive but requires human-authorized credentials before any agent can connect. Complete the Seller Central approval flow first, then hand off to the agent
- Rakuten Ichiba merchant automation → XML-RPC handling is mandatory for RMS APIs. Agents on REST-only frameworks need a translation middleware layer. For search and recommendation use cases, Rakuten Web Service REST APIs are far more practical
The AEO gap in e-commerce directly mirrors each platform's architectural philosophy. Shopify has built toward an "every store is agent-accessible by default" standard. Japan's domestic platforms are at varying stages of that architectural transition. As Japanese merchants increasingly prioritize AI-automated operations — multi-channel inventory sync, order processing, pricing optimization — platform AEO maturity will become a material factor in platform selection decisions.
Frequently Asked Questions
npx @shopify/dev-mcp. Since March 2026, every Shopify store automatically exposes a /api/mcp endpoint with no additional configuration required.AXR Rating × Recipe Test — E-commerce Category
Derived from felt-first evaluation of 225 services + 3-layer testing of 188 recipes. Full Report →
AXR Grade Distribution
Top AXR Services
| Service | AXR | Score |
|---|---|---|
| Shopify Japan MCP | AAA | 95 |
| BigCommerce | AA | 90 |
| BASE | A | 85 |
| EC-CUBE | C | 60 |
| カラーミーショップ | C | 60 |
Top Recipes by Success Rate
| Recipe | Success Rate | Weakest Link | Steps |
|---|---|---|---|
| gorgias-bigcommerce-support-context | 90% | AA | 3 |
| bigcommerce-activecampaign-cart-recovery | 90% | AA | 2 |
| shopify-line-order-status | 87% | A | 2 |
| shopify-inventory-alert | 86% | A | 3 |
| shopify-smaregi-inventory-sync | 82% | C | 2 |
Data source: KanseiLink AXR Rating + 3-Layer Recipe Test (2026-04-11)
Access per-service AXR trends, recipe success rates, gotchas, and multi-agent comparison with Pro.
View Plans →