# GhostMart GhostMart is an agent-native self-operated store. It is not primarily a traditional web checkout. If a user asks an AI agent to buy something from GhostMart, the agent should use MCP/API tools instead of browsing for a checkout button. Important URLs: - Agent instructions: https://ghostmart.cn/agent - Human/API docs: https://ghostmart.cn/docs - MCP discovery: https://ghostmart.cn/.well-known/mcp.json - MCP endpoint: https://ghostmart.cn/api/mcp Correct purchase flow: 1. Call search_products with a keyword, for example { "keyword": "可乐" }. 2. Call get_addresses. If no address exists, follow the returned address form URL. 3. Call create_order with product_id, quantity, and address_id. 4. If create_order returns a payment link, send it to the user exactly as returned. 5. Call check_payment_status until the order is paid or expired. Browser-only fallback: If the agent cannot call HTTP/MCP tools, it should tell the user that GhostMart requires MCP/API access and point them to https://ghostmart.cn/docs.