Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

mcp-marketplaceMCP marketplace 搜索

Agent Skill

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

总安装

5,288

周安装

216

GitHub Stars

1

下载量

1,711
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install mcp-marketplace

简介

统一管理MCP服务器的安装与配置流程。

  • 聚合npm与Smithery注册表中的50+验证服务。
  • 自动生成OpenClaw与Claude Desktop配置片段。
  • 支持批量导入导出便于团队协作维护。mcp-marketplace 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 优先选择有持续更新记录的项目降低风险。

SKILL.md

name
mcp-marketplace
description
>
Covers
MCP install, setup, configure, discover, search, remove, uninstall,

MCP Server Marketplace

Help users discover, install, configure, and manage MCP servers. Supports OpenClaw, Claude Desktop, Claude Code, and Cursor.

Core Principles

  1. ClawHub First — Always check for a ClawHub plugin bundle before raw server install. Bundles include skills and workflows on top of the MCP connection.
  2. Never Store Secrets — Auth values are always env var references (${VAR_NAME}), never raw tokens. Never ask the user to paste their actual token in chat.
  3. Verify Before Acting — Confirm server choice and auth readiness before installing.
  4. Guide Completely — Don't just install. Walk through auth setup and verification.

Intent Routing

Classify the user's request into one of these intents, then follow the corresponding workflow.

DISCOVER — "What MCP servers are available for X?"

  1. Run search:
   python3 {baseDir}/scripts/search_registries.py --query "<user's topic>" [--category "<category>"]
  1. If clawHubMatch is present, mention the bundle first: "There's a [bundle name] plugin on ClawHub with [N] skills — want that instead?"
  2. Present results as a numbered list with name, description, and auth requirements.
  3. If any result has "source": "npm" or "source": "smithery", add a note: "This server is from [npm/Smithery] and hasn't been verified by our team. It should work but proceed with caution."
  4. Offer to install any result.
  5. If user asks "what else should I install?" or "recommend more servers":
   python3 {baseDir}/scripts/smart_recommend.py [--max-results 5]

Present recommendations with their reasons (which installed servers they complement). Offer to install any.

INSTALL — "Install the X MCP server"

This is the most complex flow. Follow all steps in order.

Step 1 — Search:

python3 {baseDir}/scripts/search_registries.py --query "<server name>"

Step 2 — ClawHub bundle offer: If clawHubMatch is present, offer the bundle:

I found a [bundle displayName] plugin on ClawHub that includes the MCP connection plus [skillCount] additional skills. Would you like the full bundle, or just the raw MCP connection?

If user wants the bundle, guide them to install via ClawHub (clawhub install <bundleId>). Then record the install and stop.

Step 3 — Confirm server: If multiple results, present a numbered list and ask user to pick. If one result, confirm: "I'll set up [displayName] — sound good?"

Step 3.5 — Compatibility check (if non-default client): If the user specified a client or you detected a non-OpenClaw client, check compatibility:

python3 {baseDir}/scripts/check_compatibility.py --server-id "<id>" --client "<client>"

If compatible is false, warn the user and suggest alternatives. If there are warnings, mention them but proceed.

Step 4 — Build config:

python3 {baseDir}/scripts/build_config.py --server-id "<id>" [--client "<client>"]

The --client flag is optional. If omitted, the script auto-detects the client (OpenClaw, Claude Desktop, Claude Code, or Cursor). The output includes mergeTarget (the config file path) and client (the detected client name).

Step 5 — Auth guidance (if server has requiredEnv): Follow the Auth Guidance Pattern below. Wait for user to confirm they have their token ready before proceeding.

Step 6 — Check prerequisites and install:

python3 {baseDir}/scripts/install_server.py --server-id "<id>"

This script checks prerequisites and returns the install command — it does NOT run it.

  • If prerequisitesMet is false, show the prerequisites.suggestion and help the user install the prerequisite first.
  • If prerequisitesMet is true, run the installCommand.command directly using the Bash tool. For example, if the output says "command": "npx -y @github/mcp-server --help", run that command to verify the package resolves.
  • If installCommand.command is null (HTTP servers), skip — no install needed.
  • If the install command fails, try the installCommand.fallbackCommand if present, or consult {baseDir}/references/troubleshooting.md.

Step 7 — Write config: Present the configEntry from step 4 and explain it needs to be added to the config file at mergeTarget (the path returned by build_config.py). If the config file exists, merge the new server entry into the existing mcpServers object. If it doesn't exist, create it:

{
  "mcpServers": {
    <configEntry content here>
  }
}

Step 8 — Record state:

python3 {baseDir}/scripts/manage_servers.py --action record --server-id "<id>" --package "<package>" --transport "<transport>" --install-method "<method>" --source "<source>"

Use --source curated, --source npm, or --source smithery based on where the server was found.

Step 8.5 — Health check (optional):

python3 {baseDir}/scripts/health_check.py --server-id "<id>"

If status is "healthy", include the tool count in the summary. If "unhealthy" or "error", troubleshoot before declaring success — consult {baseDir}/references/troubleshooting.md.

Step 9 — Summary: Tell the user what was installed, what tools are now available (from health check if run), and remind them to restart their client to pick up the new server.

BULK INSTALL — "Install the dev toolkit" / "Set up servers for data work"

  1. If user mentions a specific bundle, resolve it. If they describe a use case, match to the closest bundle:
   python3 {baseDir}/scripts/bulk_install.py --bundle "<bundle-name>"

Available bundles: standard-dev, data-engineering, web-frontend, devops, productivity, ai-ml.

  1. If unsure which bundle, list them all:
   python3 {baseDir}/scripts/bulk_install.py --bundle __list__

Present the options and let the user choose.

  1. Present the install plan: show which servers will be installed and which are already configured.
  1. For each server in toInstall, follow the INSTALL workflow (Steps 3-9). Process them one at a time, confirming auth requirements for each.
  1. After all servers are installed, present a summary: "Installed X servers, Y were already configured."

DETECT — "Scan for MCP servers" / "What MCP servers do I already have installed?"

  1. Run detection:
   python3 {baseDir}/scripts/detect_servers.py --verbose
  1. If unconfigured has entries: "I found [count] MCP server packages on your system that aren't configured yet: [list them]. Want me to set up any of them?"
  2. If alreadyConfigured has entries: mention them as already active.
  3. If nothing detected: "No known MCP server packages found. Want me to search for servers to install?"
  4. For each server the user wants to configure, follow the INSTALL workflow starting at Step 4 (Build config) — the package is already installed.

RECOMMEND — "Set up MCP for this project" / "What servers should I use?"

  1. Scan the project:
   python3 {baseDir}/scripts/recommend_servers.py [--project-dir "<path>"]

If the user specifies a project type: python3 {baseDir}/scripts/recommend_servers.py --template "<type>" Available templates: python-web, node-fullstack, data-science, mobile, devops, static-site.

  1. If detected is true:

- Present the detected template: "This looks like a [displayName] project (matched [files/patterns])." - List recommended servers first, then optional servers. - Mark any that are already configured. - Offer to install the recommended set (routes to BULK INSTALL logic).

  1. If detected is false:

- List available templates and ask the user to pick one. - Or suggest running DISCOVER for a broader search.

CONFIGURE — "Set the API key for X" / "Connect X to my database"

  1. Identify the server from the user's request.
  2. Run build_config.py --server-id "<id>" with any custom env/args the user provides:
   python3 {baseDir}/scripts/build_config.py --server-id "<id>" --custom-env '{"KEY": "${KEY}"}'
  1. Follow the Auth Guidance Pattern for any new env vars.
  2. Update the .mcp.json config entry.

STATUS — "Show my installed MCP servers"

  1. Run:
   python3 {baseDir}/scripts/manage_servers.py --action list
  1. Present as a formatted table: server name, package, transport, install method, installed date, config present.
  2. If any server has "configPresent": false, warn: "This server is recorded but its config entry was not found. It may need to be re-configured."
  3. If the user asks about a specific server:
   python3 {baseDir}/scripts/manage_servers.py --action status --server-id "<id>"
  1. If no servers installed, suggest running a discovery search.

REMOVE — "Remove the X server"

  1. Confirm: "Remove [displayName]? This will remove the state record. You should also remove its entry from .mcp.json."
  2. Run:
   python3 {baseDir}/scripts/manage_servers.py --action remove --server-id "<id>"
  1. Remind user to remove the corresponding entry from .mcp.json and restart OpenClaw.

UPDATE — "Update my MCP servers"

  1. Run version check:
   python3 {baseDir}/scripts/version_check.py

For a specific server: python3 {baseDir}/scripts/version_check.py --server-id "<id>"

  1. Present results:

- Servers with updateAvailable: true: show current vs latest version and the updateCommand. - Servers with note (npx/uvx/http): explain they auto-resolve or are managed remotely. - Docker servers: suggest docker pull to refresh the image.

  1. If the user wants to update, run the updateCommand for each server via the Bash tool.
  1. After updating, optionally run a health check to verify the updated server works.

HEALTH CHECK — "Is my X server working?" / "Test the GitHub MCP"

  1. Identify the server from the user's request.
  2. Run:
   python3 {baseDir}/scripts/health_check.py --server-id "<id>"
  1. If status is "healthy":

- Present the tool count and list a few tool names. - "Your [displayName] server is healthy with [toolCount] tools available."

  1. If status is "unhealthy" or "error":

- Show the error message. - Consult {baseDir}/references/troubleshooting.md for the specific error. - Update server status: python3 {baseDir}/scripts/manage_servers.py --action update-status --server-id "<id>" --status error - Guide the user through the fix, then re-run the health check to confirm.

TROUBLESHOOT — "X server isn't working" / "Why can't I use the GitHub tools?"

  1. Identify the server.
  2. Run health check:
   python3 {baseDir}/scripts/health_check.py --server-id "<id>"
  1. Based on the error, consult {baseDir}/references/troubleshooting.md.
  2. Guide the user through the fix step by step.
  3. Re-run health check to confirm resolution.
  4. If resolved, update status: python3 {baseDir}/scripts/manage_servers.py --action update-status --server-id "<id>" --status active

CONTRIBUTE — "Add my server to the marketplace" / "Contribute a server config"

  1. Gather server details from the user:

- ID: lowercase, hyphenated (e.g., my-server) - Display Name: human-readable name - Description: what the server does - Package: npm/pip package name or Docker image - Transport: stdio or http - Install Method: npx, npm, uvx, pip, http, or docker - Categories: from the Categories list below - Required Env Vars: any tokens/keys needed - Tags: search keywords

  1. Generate and validate the entry:
   python3 {baseDir}/scripts/contribute_server.py --id "<id>" --display-name "<name>" --description "<desc>" --package "<pkg>" --transport "<transport>" --install-method "<method>" --categories "<cat1,cat2>" --tags "<tag1,tag2>" --required-env "<VAR1,VAR2>"
  1. If valid is true: present the serverEntry JSON and the prBody template. Guide the user to submit a PR to the marketplace repository.
  1. If valid is false: show the validationErrors and help the user fix them, then re-run.

Auth Guidance Pattern

When a server requires environment variables:

  1. List each required variable with its purpose (from authGuidance.instructions).
  2. Provide the generation URL if available: "You can create one at [URL]".
  3. Show the export command: export VAR_NAME=<your-value-here>
  4. Remind about persistence: "Add this to ~/.zshrc (or ~/.bashrc) so it persists across sessions."
  5. NEVER ask the user to paste their actual token in the chat. Guide them to set it in their shell.
  6. NEVER store raw token values in config — only ${VAR_NAME} references.
  7. Offer secrets manager (if available): Before telling the user to add export to .zshrc, check for a secrets manager:
   python3 {baseDir}/scripts/secrets_helper.py --action detect

If managers are found, offer the option: "I detected [manager name] on your system. Want to store this token there instead of in your shell profile? It's more secure." If yes, generate the store command:

   python3 {baseDir}/scripts/secrets_helper.py --action store-command --manager "<manager>" --service "<server-name>" --env-var "<VAR_NAME>"

Present the storeCommand for the user to run, then show the shellIntegration line to add to ~/.zshrc.

OAuth Servers

When authGuidance.authType is "oauth":

  1. Present the setup steps from authGuidance.oauthSetupSteps as a numbered list.
  2. Mention the provider: "This server uses [provider] OAuth for authentication."
  3. Link to reference doc: "For detailed OAuth setup instructions, see the OAuth patterns guide."
  4. Guide through env vars: After OAuth setup, the user still needs to set the required env vars (e.g., GOOGLE_APPLICATION_CREDENTIALS).
  5. Do NOT ask the user to paste credentials in the chat — guide them to set env vars in their shell.

Error Recovery

  • Install fails with missing prerequisites: Read {baseDir}/references/troubleshooting.md for the specific error and guide the user.
  • Server not found in catalog: The search falls back to npm and Smithery registries automatically. If still not found, suggest checking https://github.com/modelcontextprotocol/servers for the official list or https://smithery.ai for community servers.
  • Config generation fails: Show a manual config example from {baseDir}/references/transport-patterns.md and walk through it.
  • Server starts but tools don't appear: Run python3 {baseDir}/scripts/health_check.py --server-id "<id>" to diagnose. Consult {baseDir}/references/troubleshooting.md.
  • Health check times out: The server may need env vars, a database connection, or more time. Try increasing the timeout with --timeout 30.
  • Config not found for a client: Check the mergeTarget path from build_config.py. See {baseDir}/references/troubleshooting.md for client-specific config paths.

Categories

Available category filters for discovery: developer-tools, database, communication, productivity, cloud-infra, ai-ml, data, cms-content, finance, observability, search, auth, storage, version-control, browser.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.75%
按下载量换算1,228

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills