AACFlow

LaunchDarkly

Manage feature flags with LaunchDarkly.

Usage Instructions

Integrate LaunchDarkly into your workflow. List, create, update, toggle, and delete feature flags. Manage projects, environments, segments, members, and audit logs. Requires API Key.

Tools

launchdarkly_create_flag

Input

ParameterTypeRequiredDescription
apiKeystringYesNo description
projectKeystringYesNo description
namestringYesNo description
keystringYesNo description
descriptionstringNoNo description
tagsstringNoNo description
temporarybooleanNoNo description

Output

ParameterTypeDescription
keystringThe unique key of the feature flag
namestringThe human-readable name of the feature flag
kindstringThe type of flag (boolean or multivariate)
descriptionstringDescription of the feature flag
temporarybooleanWhether the flag is temporary
archivedbooleanWhether the flag is archived
deprecatedbooleanWhether the flag is deprecated
creationDatenumberUnix timestamp in milliseconds when the flag was created
tagsarrayTags applied to the flag
variationsarrayThe variations for this feature flag
valuestringThe variation value
namestringThe variation name
descriptionstringThe variation description
maintainerIdstringThe ID of the member who maintains this flag

launchdarkly_delete_flag

Input

ParameterTypeRequiredDescription
apiKeystringYesNo description
projectKeystringYesNo description
flagKeystringYesNo description

Output

ParameterTypeDescription
deletedbooleanWhether the flag was successfully deleted

launchdarkly_get_audit_log

Input

ParameterTypeRequiredDescription
apiKeystringYesNo description
limitnumberNoNo description
specstringNoFilter expression (e.g., "resourceType:flag")

Output

ParameterTypeDescription
entriesarrayList of audit log entries
idstringThe audit log entry ID
datenumberUnix timestamp in milliseconds
kindstringThe type of action performed
namestringThe name of the resource acted on
descriptionstringFull description of the action
shortDescriptionstringShort description of the action
memberEmailstringEmail of the member who performed the action
targetNamestringName of the target resource
targetKindstringKind of the target resource
totalCountnumberTotal number of audit log entries

launchdarkly_get_flag

Input

ParameterTypeRequiredDescription
apiKeystringYesNo description
projectKeystringYesNo description
flagKeystringYesNo description
environmentKeystringNoNo description

Output

ParameterTypeDescription
keystringThe unique key of the feature flag
namestringThe human-readable name of the feature flag
kindstringThe type of flag (boolean or multivariate)
descriptionstringDescription of the feature flag
temporarybooleanWhether the flag is temporary
archivedbooleanWhether the flag is archived
deprecatedbooleanWhether the flag is deprecated
creationDatenumberUnix timestamp in milliseconds when the flag was created
tagsarrayTags applied to the flag
variationsarrayThe variations for this feature flag
valuestringThe variation value
namestringThe variation name
descriptionstringThe variation description
maintainerIdstringThe ID of the member who maintains this flag
onbooleanWhether the flag is on in the requested environment (null if no single environment was specified)

launchdarkly_get_flag_status

Get the status of a feature flag across environments (active, inactive, launched, etc.).

Input

ParameterTypeRequiredDescription
apiKeystringYesNo description
projectKeystringYesNo description
flagKeystringYesNo description
environmentKeystringYesNo description

Output

ParameterTypeDescription
namestringThe flag status (new, active, inactive, launched)
lastRequestedstringTimestamp of the last evaluation
defaultValstringThe default variation value

launchdarkly_list_environments

Input

ParameterTypeRequiredDescription
apiKeystringYesNo description
projectKeystringYesNo description
limitnumberNoNo description

Output

ParameterTypeDescription
environmentsarrayList of environments
idstringThe environment ID
keystringThe unique environment key
namestringThe environment name
colorstringThe color assigned to this environment
apiKeystringThe server-side SDK key for this environment
mobileKeystringThe mobile SDK key for this environment
tagsarrayTags applied to the environment
totalCountnumberTotal number of environments

launchdarkly_list_flags

Input

ParameterTypeRequiredDescription
apiKeystringYesNo description
projectKeystringYesNo description
environmentKeystringNoNo description
tagstringNoNo description
limitnumberNoNo description

Output

ParameterTypeDescription
flagsarrayList of feature flags
keystringThe unique key of the feature flag
namestringThe human-readable name of the feature flag
kindstringThe type of flag (boolean or multivariate)
descriptionstringDescription of the feature flag
temporarybooleanWhether the flag is temporary
archivedbooleanWhether the flag is archived
deprecatedbooleanWhether the flag is deprecated
creationDatenumberUnix timestamp in milliseconds when the flag was created
tagsarrayTags applied to the flag
variationsarrayThe variations for this feature flag
valuestringThe variation value
namestringThe variation name
descriptionstringThe variation description
maintainerIdstringThe ID of the member who maintains this flag
totalCountnumberTotal number of flags

launchdarkly_list_members

Input

ParameterTypeRequiredDescription
apiKeystringYesNo description
limitnumberNoNo description

Output

ParameterTypeDescription
membersarrayList of account members
idstringThe member ID
emailstringThe member email address
firstNamestringThe member first name
lastNamestringThe member last name
rolestringThe member role (reader, writer, admin, owner)
lastSeennumberUnix timestamp of last activity
creationDatenumberUnix timestamp when the member was created
verifiedbooleanWhether the member email is verified
totalCountnumberTotal number of members

launchdarkly_list_projects

Input

ParameterTypeRequiredDescription
apiKeystringYesNo description
limitnumberNoNo description

Output

ParameterTypeDescription
projectsarrayList of projects
idstringThe project ID
keystringThe unique project key
namestringThe project name
tagsarrayTags applied to the project
totalCountnumberTotal number of projects

launchdarkly_list_segments

Input

ParameterTypeRequiredDescription
apiKeystringYesNo description
projectKeystringYesNo description
environmentKeystringYesNo description
limitnumberNoNo description

Output

ParameterTypeDescription
segmentsarrayList of user segments
keystringThe unique segment key
namestringThe segment name
descriptionstringThe segment description
tagsarrayTags applied to the segment
creationDatenumberUnix timestamp in milliseconds when the segment was created
unboundedbooleanWhether this is an unbounded (big) segment
includedarrayUser keys explicitly included in the segment
excludedarrayUser keys explicitly excluded from the segment
totalCountnumberTotal number of segments

launchdarkly_toggle_flag

Input

ParameterTypeRequiredDescription
apiKeystringYesNo description
projectKeystringYesNo description
flagKeystringYesNo description
environmentKeystringYesNo description
enabledbooleanYesNo description

Output

ParameterTypeDescription
keystringThe unique key of the feature flag
namestringThe human-readable name of the feature flag
kindstringThe type of flag (boolean or multivariate)
descriptionstringDescription of the feature flag
temporarybooleanWhether the flag is temporary
archivedbooleanWhether the flag is archived
deprecatedbooleanWhether the flag is deprecated
creationDatenumberUnix timestamp in milliseconds when the flag was created
tagsarrayTags applied to the flag
variationsarrayThe variations for this feature flag
valuestringThe variation value
namestringThe variation name
descriptionstringThe variation description
maintainerIdstringThe ID of the member who maintains this flag
onbooleanWhether the flag is now on in the target environment

launchdarkly_update_flag

Update a feature flag metadata (name, description, tags, temporary, archived) using semantic patch.

Input

ParameterTypeRequiredDescription
apiKeystringYesNo description
projectKeystringYesNo description
flagKeystringYesNo description
updateNamestringNoNo description
updateDescriptionstringNoNo description
addTagsstringNoNo description
removeTagsstringNoNo description
archivebooleanNoNo description
commentstringNoNo description

Output

ParameterTypeDescription
keystringThe unique key of the feature flag
namestringThe human-readable name of the feature flag
kindstringThe type of flag (boolean or multivariate)
descriptionstringDescription of the feature flag
temporarybooleanWhether the flag is temporary
archivedbooleanWhether the flag is archived
deprecatedbooleanWhether the flag is deprecated
creationDatenumberUnix timestamp in milliseconds when the flag was created
tagsarrayTags applied to the flag
variationsarrayThe variations for this feature flag
valuestringThe variation value
namestringThe variation name
descriptionstringThe variation description
maintainerIdstringThe ID of the member who maintains this flag

On this page

Start building today
Trusted by over 100,000 builders.
The SaaS platform to build AI agents and run your agentic workforce.
Get started