{
  "schemaVersion": "1.0",
  "item": {
    "slug": "debridge-mcp",
    "name": "Debridge Mcp",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/aviclaw/debridge-mcp",
    "canonicalUrl": "https://clawhub.ai/aviclaw/debridge-mcp",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/debridge-mcp",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=debridge-mcp",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "setup.sh"
    ],
    "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/debridge-mcp"
    },
    "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/debridge-mcp",
    "agentPageUrl": "https://openagent3.xyz/skills/debridge-mcp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/debridge-mcp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/debridge-mcp/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": "deBridge MCP Skill",
        "body": "Enable AI agents to execute non-custodial cross-chain cryptocurrency swaps and transfers via the deBridge protocol."
      },
      {
        "title": "What It Does",
        "body": "Cross-chain swaps: Find optimal routes and execute trades across 20+ chains\nTransfer assets: Move tokens between chains with better rates than traditional bridges\nFee estimation: Check fees and conditions before executing\nNon-custodial: Assets never leave user control"
      },
      {
        "title": "Installation",
        "body": "# Clone the MCP server\ngit clone https://github.com/debridge-finance/debridge-mcp.git ~/debridge-mcp\ncd ~/debridge-mcp\nnpm install\nnpm run build\n\n# Add to OpenClaw config\n# See configuration below"
      },
      {
        "title": "Configuration",
        "body": "Add to ~/.openclaw/openclaw.json:\n\n{\n  \"plugins\": {\n    \"entries\": {\n      \"mcp-adapter\": {\n        \"enabled\": true,\n        \"config\": {\n          \"servers\": [\n            {\n              \"name\": \"debridge\",\n              \"transport\": \"stdio\",\n              \"command\": \"node\",\n              \"args\": [\"/home/ubuntu/debridge-mcp/dist/index.js\"]\n            }\n          ]\n        }\n      }\n    }\n  }\n}\n\nThen restart: openclaw gateway restart"
      },
      {
        "title": "Available Tools",
        "body": "When MCP is connected, agents can use:\n\nget_quote: Get swap quote for cross-chain trade\ncreate_order: Create cross-chain order\nget_status: Check order status\nget_supported_chains: List supported chains"
      },
      {
        "title": "Usage Example",
        "body": "Ask: \"Swap 100 USDC from Ethereum to Arbitrum\"\n\nAgent uses MCP to:\n1. Get quote for USDC → USDC on Arbitrum\n2. Show estimated receive amount and fees\n3. Create order if user confirms\n4. Monitor until completion"
      },
      {
        "title": "Security Notes",
        "body": "Always verify quoted rates before executing\nCheck slippage tolerance settings\ndeBridge uses DLN (Decentralized Liquidity Network) - not a bridge\nNo liquidity pools - uses order-based matching"
      },
      {
        "title": "Chains Supported",
        "body": "Ethereum, Arbitrum, Optimism, Base, Polygon, Avalanche, BNB Chain, Solana, and 15+ more.\n\nSkill by: Avi (github.com/aviclaw)"
      }
    ],
    "body": "deBridge MCP Skill\n\nEnable AI agents to execute non-custodial cross-chain cryptocurrency swaps and transfers via the deBridge protocol.\n\nWhat It Does\nCross-chain swaps: Find optimal routes and execute trades across 20+ chains\nTransfer assets: Move tokens between chains with better rates than traditional bridges\nFee estimation: Check fees and conditions before executing\nNon-custodial: Assets never leave user control\nInstallation\n# Clone the MCP server\ngit clone https://github.com/debridge-finance/debridge-mcp.git ~/debridge-mcp\ncd ~/debridge-mcp\nnpm install\nnpm run build\n\n# Add to OpenClaw config\n# See configuration below\n\nConfiguration\n\nAdd to ~/.openclaw/openclaw.json:\n\n{\n  \"plugins\": {\n    \"entries\": {\n      \"mcp-adapter\": {\n        \"enabled\": true,\n        \"config\": {\n          \"servers\": [\n            {\n              \"name\": \"debridge\",\n              \"transport\": \"stdio\",\n              \"command\": \"node\",\n              \"args\": [\"/home/ubuntu/debridge-mcp/dist/index.js\"]\n            }\n          ]\n        }\n      }\n    }\n  }\n}\n\n\nThen restart: openclaw gateway restart\n\nAvailable Tools\n\nWhen MCP is connected, agents can use:\n\nget_quote: Get swap quote for cross-chain trade\ncreate_order: Create cross-chain order\nget_status: Check order status\nget_supported_chains: List supported chains\nUsage Example\nAsk: \"Swap 100 USDC from Ethereum to Arbitrum\"\n\nAgent uses MCP to:\n1. Get quote for USDC → USDC on Arbitrum\n2. Show estimated receive amount and fees\n3. Create order if user confirms\n4. Monitor until completion\n\nSecurity Notes\nAlways verify quoted rates before executing\nCheck slippage tolerance settings\ndeBridge uses DLN (Decentralized Liquidity Network) - not a bridge\nNo liquidity pools - uses order-based matching\nChains Supported\n\nEthereum, Arbitrum, Optimism, Base, Polygon, Avalanche, BNB Chain, Solana, and 15+ more.\n\nSkill by: Avi (github.com/aviclaw)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/aviclaw/debridge-mcp",
    "publisherUrl": "https://clawhub.ai/aviclaw/debridge-mcp",
    "owner": "aviclaw",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/debridge-mcp",
    "downloadUrl": "https://openagent3.xyz/downloads/debridge-mcp",
    "agentUrl": "https://openagent3.xyz/skills/debridge-mcp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/debridge-mcp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/debridge-mcp/agent.md"
  }
}