Lobstersearch
/install lobstersearch-mcp
LobsterSearch — Agentic Commerce
LobsterSearch is an agentic commerce platform. AI agents can discover businesses, browse real product catalogs with variant-level detail, and complete purchases with Stripe Connect payments — all through a single MCP endpoint.
MCP Server
Endpoint: https://mcp.lobstersearch.ai/mcp
Transport: StreamableHTTP
Authentication: None required (public, rate-limited)
Configuration
{
"mcpServers": {
"lobstersearch": {
"url": "https://mcp.lobstersearch.ai/mcp",
"transport": "streamable-http"
}
}
}
Tools (10 available)
Discovery
search
Search for businesses with natural language. Uses a 4-step fallback chain (structured → tags → LLM interpret → LLM catalog scan) for maximum recall.
Parameters:
query(string, required) — e.g. "best ramen in Bugis" or "dental clinic near Tanjong Rhu"business_type(string) — filter by type (e.g., restaurant, salon)city(string) — city name filterlimit(number) — 1-20, default 10
details
Get full business profile by slug or ID. Returns contact info, hours, quality scores, and catalog offerings with variants.
Parameters:
slug(string) — business slug (e.g., "tanjong-rhu-dental")id(string) — business UUID
compare
Side-by-side comparison of 2-5 businesses.
Parameters:
business_ids(array, required) — 2-5 business UUIDs
Catalog
browse_catalog
Browse a business's product/service catalog. Filter by category, sort by name or price.
Parameters:
business_id(string, required) — business UUIDcategory(string) — filter by categorysort_by(string) — "name", "price_low", or "price_high"
get_product_details
Deep product view with all variant dimensions, combinations, prices, SKUs, and stock levels.
Parameters:
offering_id(string, required) — product/offering UUID
check_availability
Real-time stock check for a product or specific variant combination.
Parameters:
offering_id(string, required) — product/offering UUIDoptions(object) — variant options, e.g. {"Color":"Black","Size":"Large"}
Commerce
create_order
Create a draft order with atomic stock reservation. Items specified by offering + variant + quantity.
Parameters:
business_id(string, required)items(array, required) — [{offering_id, variant_id?, quantity}]customer_email(string) — for notificationscustomer_name(string)customer_notes(string)
confirm_order
Confirm draft order and generate Stripe Checkout payment link (30-min expiry).
Parameters:
order_id(string, required) — from create_order
get_order_status
Full status, payment state, fulfillment progress, and event timeline.
Parameters:
order_id(string, required)
cancel_order
Cancel with automatic refund (if paid) and stock restoration.
Parameters:
order_id(string, required)reason(string)
Order Lifecycle
DRAFT → CONFIRMED → PAID → ACCEPTED → PREPARING → FULFILLED → COMPLETED
Cancellation with auto-refund available at any stage.
Key Design Principles
- Every response includes
next_actions— the agent always knows what to do next - Error responses include
retry_guidancefor agent resilience - Real-time stock with atomic reservation prevents overselling
- Stripe Connect direct charges for secure payment processing
- Businesses self-manage their data — catalog, pricing, and stock are always current
Usage Tips
- Use
searchfor most queries — it handles natural language and intent classification automatically - Use
detailsafter search to get the full profile for a specific business - Use
browse_catalog→get_product_details→check_availabilityto explore what's available - Use
create_order→confirm_orderfor the purchase flow - Use
comparewhen the user wants to evaluate options side-by-side - Always reference
next_actionsin responses to guide the conversation
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install lobstersearch-mcp - 安装完成后,直接呼叫该 Skill 的名称或使用
/lobstersearch-mcp触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Lobstersearch 是什么?
AI-native agentic commerce — 10 MCP tools to discover businesses, browse product catalogs with variants, and complete purchases with Stripe payments. Built f... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 234 次。
如何安装 Lobstersearch?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install lobstersearch-mcp」即可一键安装,无需额外配置。
Lobstersearch 是免费的吗?
是的,Lobstersearch 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Lobstersearch 支持哪些平台?
Lobstersearch 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Lobstersearch?
由 theoddbrick(@theoddbrick)开发并维护,当前版本 v0.1.2。