{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mcp-app-builder",
    "name": "Mcp App Builder",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/hollaugo/mcp-app-builder",
    "canonicalUrl": "https://clawhub.ai/hollaugo/mcp-app-builder",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/mcp-app-builder",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mcp-app-builder",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "agents/openai.yaml",
      "assets/mcp-app-template/package.json",
      "assets/mcp-app-template/postcss.config.js",
      "assets/mcp-app-template/server.ts",
      "assets/mcp-app-template/src/components/Card.tsx"
    ],
    "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. 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. 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-app-builder"
    },
    "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-app-builder",
    "agentPageUrl": "https://openagent3.xyz/skills/mcp-app-builder/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mcp-app-builder/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mcp-app-builder/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Overview",
        "body": "Create MCP Apps that expose tools with visual React UIs for ChatGPT or Claude. Follow the exact dependency versions and server/UI patterns in references/mcp-app-spec.md."
      },
      {
        "title": "Workflow",
        "body": "Clarify requirements: what data to visualize, UI pattern (card, table, chart, dashboard, form), data source, and how many tools (start with 1-2).\nDesign tools and UI mapping: define tool names, zod input schemas, output shape, and UI resource URIs (ui://.../app.html). Map each tool to one React entrypoint and one HTML file.\nScaffold the project: start from assets/mcp-app-template/ when possible, then customize tool names, schemas, and UI. Ensure package.json uses the exact versions, plus tsconfig.json, vite.config.ts, Tailwind + PostCSS, and per-tool build scripts.\nImplement the server: use registerAppTool/registerAppResource, zod schemas directly, createServer() factory per request, and createMcpExpressApp with app.all(\"/mcp\", ...).\nImplement the UI: use useApp + useHostStyles, parse tool results, handle loading/error/empty states, and apply safe-area insets.\nBuild and test: run npm run build, then npm run serve, then verify via a tunnel if needed."
      },
      {
        "title": "Hard Requirements",
        "body": "Use the exact dependency versions listed in references/mcp-app-spec.md.\nUse registerAppTool/registerAppResource and zod schemas directly (not JSON Schema objects).\nCreate a new McpServer instance per request via createServer().\nUse createMcpExpressApp and app.all(\"/mcp\", ...).\nBundle UI into single-file HTML via vite-plugin-singlefile.\nUse host CSS variables for theme compatibility."
      },
      {
        "title": "References",
        "body": "references/mcp-app-spec.md (authoritative spec, patterns, code templates, gotchas)"
      },
      {
        "title": "Assets",
        "body": "assets/mcp-app-template/ (ready-to-copy MCP App skeleton with one tool + UI)"
      }
    ],
    "body": "MCP App Builder\nOverview\n\nCreate MCP Apps that expose tools with visual React UIs for ChatGPT or Claude. Follow the exact dependency versions and server/UI patterns in references/mcp-app-spec.md.\n\nWorkflow\nClarify requirements: what data to visualize, UI pattern (card, table, chart, dashboard, form), data source, and how many tools (start with 1-2).\nDesign tools and UI mapping: define tool names, zod input schemas, output shape, and UI resource URIs (ui://.../app.html). Map each tool to one React entrypoint and one HTML file.\nScaffold the project: start from assets/mcp-app-template/ when possible, then customize tool names, schemas, and UI. Ensure package.json uses the exact versions, plus tsconfig.json, vite.config.ts, Tailwind + PostCSS, and per-tool build scripts.\nImplement the server: use registerAppTool/registerAppResource, zod schemas directly, createServer() factory per request, and createMcpExpressApp with app.all(\"/mcp\", ...).\nImplement the UI: use useApp + useHostStyles, parse tool results, handle loading/error/empty states, and apply safe-area insets.\nBuild and test: run npm run build, then npm run serve, then verify via a tunnel if needed.\nHard Requirements\nUse the exact dependency versions listed in references/mcp-app-spec.md.\nUse registerAppTool/registerAppResource and zod schemas directly (not JSON Schema objects).\nCreate a new McpServer instance per request via createServer().\nUse createMcpExpressApp and app.all(\"/mcp\", ...).\nBundle UI into single-file HTML via vite-plugin-singlefile.\nUse host CSS variables for theme compatibility.\nReferences\nreferences/mcp-app-spec.md (authoritative spec, patterns, code templates, gotchas)\nAssets\nassets/mcp-app-template/ (ready-to-copy MCP App skeleton with one tool + UI)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/hollaugo/mcp-app-builder",
    "publisherUrl": "https://clawhub.ai/hollaugo/mcp-app-builder",
    "owner": "hollaugo",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mcp-app-builder",
    "downloadUrl": "https://openagent3.xyz/downloads/mcp-app-builder",
    "agentUrl": "https://openagent3.xyz/skills/mcp-app-builder/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mcp-app-builder/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mcp-app-builder/agent.md"
  }
}