Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

mobazha-store-mcp-connectmobazha store MCP connect 搜索

Agent Skill

mobazha-store-mcp-connect 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,888

周安装

162

GitHub Stars

公开资料未说明

下载量

1,296
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mobazha-store-mcp-connect(mobazha store MCP connect 搜索)
来源仓库:https://github.com/fengzie/mobazha-store-mcp-connect
安装命令:
openclaw skills install mobazha-store-mcp-connect
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install mobazha-store-mcp-connect

简介

通过 MCP 协议连接 AI 代理与 Mobazha 商店后台。

  • 适用于自动化管理产品、订单与服务流程。
  • 支持实时数据同步与指令下发以实现智能运营。
  • 需配置正确 API 密钥并限制操作权限以防误操作。
  • 安装命令:openclaw skills install mobazha-store-mcp-connect,仅适用于 OpenClaw 宿主。

SKILL.md

name
store-mcp-connect
description
Connect an AI agent to a Mobazha store via MCP (Model Context Protocol). Use when the user wants their agent to directly manage store products, orders, and settings.
requires_credentials
true
credential_types

Connect AI Agent to Your Store (MCP)

Connect your AI coding agent to your Mobazha store via MCP (Model Context Protocol). Once connected, your agent can directly manage products, orders, messages, and more.

This skill requires credentials. The agent needs an API token from your store to connect. The agent must ask for your explicit consent before initiating any connection to your store. Tokens should be stored in environment variables, never committed to source control.

What You Get

After connecting, your AI agent has access to 30+ store management tools:

CategoryToolsWhat They Do
Productslistings_create, listings_update, listings_delete, listings_list_mine, listings_import_jsonFull product CRUD + bulk import
Ordersorders_get_sales, orders_confirm, orders_fulfill, orders_refundOrder lifecycle
Chatchat_get_conversations, chat_send_messageBuyer communication
Discountsdiscounts_create, discounts_update, discounts_deletePromotions
Collectionscollections_create, collections_add_productsProduct organization
Profileprofile_get, profile_updateStore identity
Notificationsnotifications_list, notifications_mark_readActivity feed
Searchsearch_listings, search_profilesMarketplace discovery
Financeexchange_rates_get, wallet_get_receiving_accounts, fiat_get_providersPayments and rates

Connection Method: SSE (Recommended)

All Mobazha deployments include a built-in MCP SSE endpoint. This is the recommended method because:

  • No additional binary to install or maintain
  • Tools are always up-to-date with your store version
  • Works with Claude Code, Cursor, Codex, and all modern AI agents

SSE Endpoint

DeploymentSSE URL
SaaShttps://app.mobazha.org/platform/v1/mcp/sse
Standalone (custom domain)https://shop.example.com/platform/v1/mcp/sse
Standalone (local Docker)http://localhost/platform/v1/mcp/sse
Native install (local)http://localhost:5102/platform/v1/mcp/sse
Native install (VPS)http://<vps-ip>:5102/platform/v1/mcp/sse

Step 1: Get Your API Token

SaaS Store

  1. Log in to your store at app.mobazha.org
  2. Go to Settings > API
  3. Click Generate Token
  4. Copy the token

Standalone Store (Docker with domain)

Open your store's admin panel in a browser and generate a token via Settings > API, or via curl:

curl -X POST https://shop.example.com/platform/v1/auth/tokens \
  -H "Content-Type: application/json" \
  -d '{"username": "admin", "password": "<your-admin-password>"}'

Native Install (local or VPS)

The default gateway port for native installs is 5102:

curl -X POST http://localhost:5102/platform/v1/auth/tokens \
  -H "Content-Type: application/json" \
  -d '{"username": "admin", "password": "<your-admin-password>"}'

For a VPS, replace localhost with your server's IP or use an SSH tunnel:

ssh -L 5102:localhost:5102 root@<vps-ip>
# Then use http://localhost:5102 from your local machine

Step 2: Configure Your AI Agent

Claude Code

Add to ~/.claude.json (or project-level .mcp.json):

{
  "mcpServers": {
    "mobazha-store": {
      "type": "sse",
      "url": "https://shop.example.com/platform/v1/mcp/sse",
      "headers": {
        "Authorization": "Bearer <your-token>"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project:

{
  "mcpServers": {
    "mobazha-store": {
      "url": "https://shop.example.com/platform/v1/mcp/sse",
      "headers": {
        "Authorization": "Bearer <your-token>"
      }
    }
  }
}

Or go to Settings > MCP Servers > Add Server and enter the SSE URL.

Codex CLI

codex mcp add mobazha-store --transport sse \
  --url "https://shop.example.com/platform/v1/mcp/sse" \
  --header "Authorization: Bearer <your-token>"

OpenCode

Add to opencode.json:

{
  "mcp": {
    "mobazha-store": {
      "type": "sse",
      "url": "https://shop.example.com/platform/v1/mcp/sse",
      "headers": {
        "Authorization": "Bearer <your-token>"
      }
    }
  }
}
Replace https://shop.example.com with your actual store URL from the table above.

Step 3: Verify the Connection

Ask your AI agent:

"List my store's products" or "Show my recent orders"

The agent should call listings_list_mine or orders_get_sales and return results. If it works, the connection is live.

For a guide on what you can do with MCP tools, see the store-management skill.


Advanced: stdio Transport

For environments where SSE is not supported by the AI agent, or for air-gapped setups, a mobazha-mcp stdio binary is available. It ships with the standalone Docker image and native install.

When to Use stdio

  • Your AI agent doesn't support SSE MCP transport
  • Air-gapped or restricted network environment
  • Development/debugging of the MCP layer itself

Using stdio from Standalone Docker

The binary is bundled in the container:

docker exec -it <container> mobazha-mcp --gateway-url http://localhost:5102 --token <token>

stdio CLI Reference

FlagEnv VariableDefaultDescription
--gateway-urlMOBAZHA_GATEWAY_URLhttp://localhost:5102Store gateway URL
--tokenMOBAZHA_TOKEN(required)Bearer token
--search-urlMOBAZHA_SEARCH_URL(optional)Marketplace search API URL

stdio Agent Configuration

{
  "mcpServers": {
    "mobazha-store": {
      "command": "mobazha-mcp",
      "args": ["--gateway-url", "http://localhost:5102"],
      "env": {
        "MOBAZHA_TOKEN": "<your-token>"
      }
    }
  }
}

Troubleshooting

"connection refused" or timeout

  • Native install: verify the store is running with curl http://localhost:5102/healthz
  • Standalone Docker: the SSE endpoint is at port 80/443 (not 5102), try curl http://localhost/healthz
  • For remote stores, check that the domain resolves and HTTPS is configured

"401 Unauthorized"

  • Verify the token: curl -H "Authorization: Bearer <token>" http://localhost:5102/v1/profiles
  • Token may have expired — generate a new one
  • Ensure the token has the required scopes for the tools you want to use

"tool not found"

  • search_listings and search_profiles require the marketplace search service
  • Some tools require specific scopes on the API token (e.g., listings:write for listings_create)

Credential Safety

  • Never hardcode tokens in source code or config files committed to git
  • Store the token in environment variables or a secrets manager
  • Add MCP config files to .gitignore if they contain tokens
  • Tokens can be revoked and regenerated at any time from the store admin panel
  • The agent must never log, display, or transmit tokens to any party other than the target store endpoint

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

94.72%
按下载量换算1,228

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills