RiserFlow MCP Server Adds E-commerce Capabilities to OpenClaw

RiserFlow is an open-source MCP server that connects AI agents like OpenClaw to real e-commerce stores, addressing limitations in product search, cart management, and order placement. The tool moves beyond demo flows to handle actual transactions that appear in store administration systems.
Core Features
- Semantic product search: Syncs store catalogs into a local Prisma/PostgreSQL database, generates embeddings, and provides agents with a better search layer than outdated platform APIs.
- Persistent customer preferences: Remembers details like size, color, and brand across sessions, enabling commands like "Get me what I ordered last time."
- Cart management: Includes support for multi-store carts.
- Real order placement: Orders go into actual CMS/admin systems. Currently ships with a Bitrix adapter, with an adapter pattern allowing support for Shopify, WooCommerce, or other platforms without changing the MCP layer.
- Product images, descriptions, and comparisons: Agents can surface products directly in chat and compare options in-context.
Production-Ready Architecture
This isn't a toy demo. It already includes:
- Multi-tenancy: One server can handle multiple stores
- Idempotency: Retries are safe, and duplicate orders are avoided
- Adapter pattern: Swap backend integrations without rewriting the MCP layer
- Local catalog sync + embeddings: Search stays independent from limitations of older commerce platforms
Technical Stack
Built with Next.js 16+, Prisma, PostgreSQL, BullMQ, and currently a Bitrix adapter. The project is open source under Apache 2.0.
Context and Availability
The developer built this to address the gap in MCP infrastructure for e-commerce, noting that while people are building MCP servers for files, GitHub, databases, and internal tools, there's little connecting AI agents to actual online stores where transactions happen. The timing aligns with MCP gaining traction through Anthropic's certification program and adoption by OpenAI and Google.
A demo video shows OpenClaw ordering a t-shirt through chat with the order appearing in Bitrix admin. The GitHub repository is available for feedback, especially on adapter design and which e-commerce platforms to support next.
📖 Read the full source: r/openclaw
👀 See Also

Claude's Canva integration: a practical workflow for design generation
Claude's Canva connector exports editable Canva projects with structured layouts, not flat images. The post details a workflow from prompt to finished carousel in 12-15 minutes, including setup, high-fidelity mode, and honest limitations.

Token Enhancer reduces webpage token usage for AI agents
A developer found that raw HTML from web fetches consumes excessive tokens in AI agent context, with Yahoo Finance pages using 704K tokens. Using Token Enhancer as an MCP server reduced this to 2.6K tokens.

Myelin: MD Extractor and Evaluator for Claude Code Procedural Memory
Myelin is an MCP server that hooks into Claude Code via PostToolUse to capture tool calls, automatically extracting .md procedure files from successful sessions and tracking whether Claude follows existing procedures step-by-step.

LORE.md: An Open Standard for Extracting Structured Knowledge from AI Conversations
LORE.md is an open standard for extracting durable knowledge from AI conversations into a structured format. It captures decisions with rationale, insights, patterns, open questions, and next steps, with everything linking across sessions.