{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mcp-server-discovery",
    "name": "MCP Server Discovery",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Yanick112/mcp-server-discovery",
    "canonicalUrl": "https://clawhub.ai/Yanick112/mcp-server-discovery",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/mcp-server-discovery",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mcp-server-discovery",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/registry.md",
      "scripts/mcp_discover.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/mcp-server-discovery"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/mcp-server-discovery",
    "agentPageUrl": "https://openagent3.xyz/skills/mcp-server-discovery/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mcp-server-discovery/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mcp-server-discovery/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "MCP Server Discovery",
        "body": "This skill helps you discover and manage MCP (Model Context Protocol) servers."
      },
      {
        "title": "What is MCP?",
        "body": "Model Context Protocol (MCP) is an open standard that enables AI systems to connect with external data sources and tools. It provides a standardized way for AI assistants to access files, databases, APIs, and other resources."
      },
      {
        "title": "Available Commands",
        "body": "Use the scripts/mcp_discover.py script for all MCP operations:"
      },
      {
        "title": "List Available Servers",
        "body": "python3 scripts/mcp_discover.py list\n\nFilter by category:\n\npython3 scripts/mcp_discover.py list --category database\n\nCategories: filesystem, dev, database, web, search, memory"
      },
      {
        "title": "Search for Servers",
        "body": "python3 scripts/mcp_discover.py search --query \"database\""
      },
      {
        "title": "Get Server Details",
        "body": "python3 scripts/mcp_discover.py info --name postgres"
      },
      {
        "title": "Generate MCP Client Configuration",
        "body": "python3 scripts/mcp_discover.py config --servers \"filesystem,github,memory\""
      },
      {
        "title": "Setting up a new MCP client",
        "body": "List available servers to see options\nSelect the servers you need\nGenerate configuration with those servers\nSave the output to your MCP client's config file"
      },
      {
        "title": "Finding the right server",
        "body": "Use search with keywords related to your need\nUse info to get detailed information about a specific server\nCheck the install command and URL for setup instructions"
      },
      {
        "title": "Server Categories",
        "body": "filesystem: File system access and management\ndev: Development tools and integrations (GitHub, etc.)\ndatabase: Database connections (PostgreSQL, SQLite)\nweb: Web scraping and content fetching\nsearch: Search engine integrations\nmemory: Persistent memory and knowledge graph"
      },
      {
        "title": "JSON Output",
        "body": "All commands support --json flag for programmatic use:\n\npython3 scripts/mcp_discover.py list --json"
      }
    ],
    "body": "MCP Server Discovery\n\nThis skill helps you discover and manage MCP (Model Context Protocol) servers.\n\nWhat is MCP?\n\nModel Context Protocol (MCP) is an open standard that enables AI systems to connect with external data sources and tools. It provides a standardized way for AI assistants to access files, databases, APIs, and other resources.\n\nAvailable Commands\n\nUse the scripts/mcp_discover.py script for all MCP operations:\n\nList Available Servers\npython3 scripts/mcp_discover.py list\n\n\nFilter by category:\n\npython3 scripts/mcp_discover.py list --category database\n\n\nCategories: filesystem, dev, database, web, search, memory\n\nSearch for Servers\npython3 scripts/mcp_discover.py search --query \"database\"\n\nGet Server Details\npython3 scripts/mcp_discover.py info --name postgres\n\nGenerate MCP Client Configuration\npython3 scripts/mcp_discover.py config --servers \"filesystem,github,memory\"\n\nCommon Workflows\nSetting up a new MCP client\nList available servers to see options\nSelect the servers you need\nGenerate configuration with those servers\nSave the output to your MCP client's config file\nFinding the right server\nUse search with keywords related to your need\nUse info to get detailed information about a specific server\nCheck the install command and URL for setup instructions\nServer Categories\nfilesystem: File system access and management\ndev: Development tools and integrations (GitHub, etc.)\ndatabase: Database connections (PostgreSQL, SQLite)\nweb: Web scraping and content fetching\nsearch: Search engine integrations\nmemory: Persistent memory and knowledge graph\nJSON Output\n\nAll commands support --json flag for programmatic use:\n\npython3 scripts/mcp_discover.py list --json"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Yanick112/mcp-server-discovery",
    "publisherUrl": "https://clawhub.ai/Yanick112/mcp-server-discovery",
    "owner": "Yanick112",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mcp-server-discovery",
    "downloadUrl": "https://openagent3.xyz/downloads/mcp-server-discovery",
    "agentUrl": "https://openagent3.xyz/skills/mcp-server-discovery/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mcp-server-discovery/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mcp-server-discovery/agent.md"
  }
}