UNPKG

@airwallex/developer-mcp

Version:

MCP server for AI agents that assist developers integrating with the Airwallex platform

14 lines (13 loc) 389 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.extractDeviceId = extractDeviceId; const node_machine_id_1 = require("node-machine-id"); function extractDeviceId() { try { return (0, node_machine_id_1.machineIdSync)(); } catch (error) { console.error("Error extracting device ID:", error); return "unknown"; } }