getSupportedChains.ts•543 B
import { z } from "zod";
import { DeBridgeClient } from "../debridgeClient";
const client = new DeBridgeClient();
/**
* MCP Tool: Get supported blockchain networks for deBridge DLN.
* Returns a list of all blockchain networks that support cross-chain swaps.
*/
export const getSupportedChainsTool = {
name: "getSupportedChains",
description: "Get list of supported blockchain networks for cross-chain swaps via deBridge DLN",
inputSchema: z.object({}),
handler: async () => {
return await client.getSupportedChains();
}
};