Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 384 Bytes

File metadata and controls

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

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

async function run() {
  const result = await launchDarkly.codeReferences.listRepositories({});

  console.log(result);
}

run();