Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 373 Bytes

File metadata and controls

18 lines (13 loc) · 373 Bytes
import { LaunchDarkly } from "@launchdarkly/mcp-server";

const launchDarkly = new LaunchDarkly({
  apiKey: process.env["LAUNCHDARKLY_API_KEY"] ?? "",
});

async function run() {
  const result = await launchDarkly.auditLog.listEntries({});

  console.log(result);
}

run();