- listRepositories - List repositories
Get a list of connected repositories. Optionally, you can include branch metadata with the withBranches query parameter. Embed references for the default branch with ReferencesForDefaultBranch. You can also filter the list of code references by project key and flag key.
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();The standalone function version of this method:
import { LaunchDarklyCore } from "@launchdarkly/mcp-server/core.js";
import { codeReferencesListRepositories } from "@launchdarkly/mcp-server/funcs/codeReferencesListRepositories.js";
// Use `LaunchDarklyCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const launchDarkly = new LaunchDarklyCore({
apiKey: process.env["LAUNCHDARKLY_API_KEY"] ?? "",
});
async function run() {
const res = await codeReferencesListRepositories(launchDarkly, {});
if (res.ok) {
const { value: result } = res;
console.log(result);
} else {
console.log("codeReferencesListRepositories failed:", res.error);
}
}
run();| Parameter | Type | Required | Description |
|---|---|---|---|
request |
operations.GetRepositoriesRequest | ✔️ | The request object to use for the request. |
options |
RequestOptions | ➖ | Used to set various options for making HTTP requests. |
options.fetchOptions |
RequestInit | ➖ | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body, are allowed. |
options.retries |
RetryConfig | ➖ | Enables retrying HTTP requests under certain failure conditions. |
Promise<components.RepositoryCollectionRep>
| Error Type | Status Code | Content Type |
|---|---|---|
| errors.UnauthorizedErrorRep | 401 | application/json |
| errors.ForbiddenErrorRep | 403 | application/json |
| errors.RateLimitedErrorRep | 429 | application/json |
| errors.APIError | 4XX, 5XX | */* |