We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/launchdarkly/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
codeReferencesListRepositories.example.ts•550 B
/*
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
*/
/**
* Example usage of the @launchdarkly/mcp-server SDK
*
* To run this example from the examples directory:
* npm run build && npx tsx codeReferencesListRepositories.ts
*/
import { LaunchDarkly } from "@launchdarkly/mcp-server";
const launchDarkly = new LaunchDarkly({
apiKey: process.env["LAUNCHDARKLY_API_KEY"] ?? "",
});
async function main() {
const result = await launchDarkly.listRepositories({});
console.log(result);
}
main().catch(console.error);