Skip to main content
Glama

deBridge MCP Server

by RookieCol
getOrderStatus.ts799 B
import { z } from "zod"; import { DeBridgeClient } from "../debridgeClient"; const client = new DeBridgeClient(); /** * MCP Tool: Check cross-chain order status by order ID. * Returns transaction hashes, current status, and order links. * * Possible statuses: "None", "Created", "Fulfilled", "SentUnlock", "OrderCancelled", * "SentOrderCancel", "ClaimedUnlock", "ClaimedOrderCancel" */ export const getOrderStatusTool = { name: "getOrderStatus", description: "Check the status of a deBridge cross-chain order by order ID", inputSchema: z.object({ orderId: z .string() .describe("The order ID to check status for (obtained from creating an order)") }), handler: async (input: { orderId: string }) => { return await client.getOrderStatus(input.orderId); } };

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/RookieCol/debridge-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server