Skip to main content

At a glance

Credentials

Set these per environment. See Connect an integration.
VariableRequiredDescription
LAUNCHDARKLY_API_TOKENYesLaunchDarkly personal or service access token (sent raw in the Authorization header, no prefix) Docs.

Setup

  1. Sign in to LaunchDarkly: Use an existing account or start a trial at https://app.launchdarkly.com. A project with a couple of test flags is enough to exercise all tools.
  2. Create an access token: Go to Organization settings → Authorization (https://app.launchdarkly.com/settings/authorization) and create a personal or service access token. A Reader role token is enough for the read tools; toggling flags needs Writer access to the relevant projects.
  3. Set the environment variable: Add the token to your .env as LAUNCHDARKLY_API_TOKEN=…
  4. Verify access: Run List Projects, then List Feature Flags with a project key.
  • The Authorization header contains the raw token with no Bearer prefix
  • Toggle Feature Flag uses LaunchDarkly’s semantic patch format: Content-Type ‘application/json; domain-model=launchdarkly.semanticpatch’ with an instructions array
  • EU and Federal instances use different hosts (app.eu.launchdarkly.com, app.launchdarkly.us); these tools target the commercial instance at app.launchdarkly.com
Provider API reference: https://launchdarkly.com/docs/api

Tools

ToolAccessDescription
List ProjectsReadList projects in the LaunchDarkly account
List Feature FlagsReadList feature flags in a project, optionally scoped to one environment
Get Feature FlagReadGet a feature flag including its variations and per-environment configuration
List EnvironmentsReadList environments in a LaunchDarkly project
Toggle Feature FlagWriteTurn a feature flag on or off in one environment using a semantic patch instruction

Example prompts

  • List the feature flags in my LaunchDarkly project and group them by whether they are archived or tagged as temporary.
  • Get my LaunchDarkly flag and tell me whether it is on in production and what the default variation is.