How to integrate Launch darkly MCP with Autogen

This guide walks you through connecting Launch darkly to AutoGen using the Composio tool router. By the end, you'll have a working Launch darkly agent that can list all environments for your project, retrieve all custom roles for audit, create a trigger workflow for a flag through natural language commands. This guide will help you understand how to give your AutoGen agent real control over a Launch darkly account through Composio's Launch darkly MCP server. Before we dive in, let's take a quick look at the key ideas and tools involved.

Launch darkly logoLaunch darkly
Api Key

Launch darkly is a feature management platform for software teams to control feature flags. It helps you ship faster and safer by toggling features without redeploys.

248 Tools

Introduction

This guide walks you through connecting Launch darkly to AutoGen using the Composio tool router. By the end, you'll have a working Launch darkly agent that can list all environments for your project, retrieve all custom roles for audit, create a trigger workflow for a flag through natural language commands.

This guide will help you understand how to give your AutoGen agent real control over a Launch darkly account through Composio's Launch darkly MCP server.

Before we dive in, let's take a quick look at the key ideas and tools involved.

Also integrate Launch darkly with

TL;DR

Here's what you'll learn:
  • Get and set up your OpenAI and Composio API keys
  • Install the required dependencies for Autogen and Composio
  • Initialize Composio and create a Tool Router session for Launch darkly
  • Wire that MCP URL into Autogen using McpWorkbench and StreamableHttpServerParams
  • Configure an Autogen AssistantAgent that can call Launch darkly tools
  • Run a live chat loop where you ask the agent to perform Launch darkly operations

What is AutoGen?

Autogen is a framework for building multi-agent conversational AI systems from Microsoft. It enables you to create agents that can collaborate, use tools, and maintain complex workflows.

Key features include:

  • Multi-Agent Systems: Build collaborative agent workflows
  • MCP Workbench: Native support for Model Context Protocol tools
  • Streaming HTTP: Connect to external services through streamable HTTP
  • AssistantAgent: Pre-built agent class for tool-using assistants

What is the Launch darkly MCP server, and what's possible with it?

The Launch darkly MCP server is an implementation of the Model Context Protocol that connects your AI agent and assistants like Claude, Cursor, etc directly to your Launch darkly account. It provides structured and secure access to your feature management platform, so your agent can perform actions like managing feature flag workflows, listing projects, retrieving environments, and reviewing teams or custom roles.

  • Automated flag trigger workflows: Set up, modify, or delete flag trigger workflows so your agent can help automate feature releases and rollbacks in specific environments.
  • Comprehensive project and environment listing: Instantly retrieve all projects and their environments to help your agent audit, enumerate, or manage deployment contexts.
  • Team and role audits: List all teams and custom roles, making it easy for your agent to review permissions, conduct audits, or suggest configuration changes.
  • Code reference repository discovery: Pull complete lists of code reference repositories tied to your projects for better traceability and DevOps integration.
  • Effortless environment and project management: Quickly access and enumerate environments and projects to streamline workflows and improve operational oversight.

What is the Composio tool router, and how does it fit here?

What is Composio SDK?

Composio's Composio SDK helps agents find the right tools for a task at runtime. You can plug in multiple toolkits (like Gmail, HubSpot, and GitHub), and the agent will identify the relevant app and action to complete multi-step workflows. This can reduce token usage and improve the reliability of tool calls. Read more here: Getting started with Composio SDK

The tool router generates a secure MCP URL that your agents can access to perform actions.

How the Composio SDK works

The Composio SDK follows a three-phase workflow:

  1. Discovery: Searches for tools matching your task and returns relevant toolkits with their details.
  2. Authentication: Checks for active connections. If missing, creates an auth config and returns a connection URL via Auth Link.
  3. Execution: Executes the action using the authenticated connection.

Step-by-step Guide

Step by step08 STEPS
1

Prerequisites

You will need:

  • A Composio API key
  • An OpenAI API key (used by Autogen's OpenAIChatCompletionClient)
  • A Launch darkly account you can connect to Composio
  • Some basic familiarity with Autogen and Python async
2

Getting API Keys for OpenAI and Composio

OpenAI API Key
  • Go to the OpenAI dashboard and create an API key. You'll need credits to use the models, or you can connect to another model provider.
  • Keep the API key safe.
Composio API Key
  • Log in to the Composio dashboard.
  • Navigate to your API settings and generate a new API key.
  • Store this key securely as you'll need it for authentication.
3

Install dependencies

bash
pip install composio python-dotenv
pip install autogen-agentchat autogen-ext-openai autogen-ext-tools

Install Composio, Autogen extensions, and dotenv.

What's happening:

  • composio connects your agent to Launch darkly via MCP
  • autogen-agentchat provides the AssistantAgent class
  • autogen-ext-openai provides the OpenAI model client
  • autogen-ext-tools provides MCP workbench support

4

Set up environment variables

bash
COMPOSIO_API_KEY=your-composio-api-key
OPENAI_API_KEY=your-openai-api-key
USER_ID=your-user-identifier@example.com

Create a .env file in your project folder.

What's happening:

  • COMPOSIO_API_KEY is required to talk to Composio
  • OPENAI_API_KEY is used by Autogen's OpenAI client
  • USER_ID is how Composio identifies which user's Launch darkly connections to use
5

Import dependencies and create Tool Router session

python
import asyncio
import os
from dotenv import load_dotenv
from composio import Composio

from autogen_agentchat.agents import AssistantAgent
from autogen_ext.models.openai import OpenAIChatCompletionClient
from autogen_ext.tools.mcp import McpWorkbench, StreamableHttpServerParams

load_dotenv()

async def main():
    # Initialize Composio and create a Launch darkly session
    composio = Composio(api_key=os.getenv("COMPOSIO_API_KEY"))
    session = composio.create(
        user_id=os.getenv("USER_ID"),
        toolkits=["launch_darkly"]
    )
    url = session.mcp.url
What's happening:
  • load_dotenv() reads your .env file
  • Composio(api_key=...) initializes the SDK
  • create(...) creates a Tool Router session that exposes Launch darkly tools
  • session.mcp.url is the MCP endpoint that Autogen will connect to
6

Configure MCP parameters for Autogen

python
# Configure MCP server parameters for Streamable HTTP
server_params = StreamableHttpServerParams(
    url=url,
    timeout=30.0,
    sse_read_timeout=300.0,
    terminate_on_close=True,
    headers={"x-api-key": os.getenv("COMPOSIO_API_KEY")}
)

Autogen expects parameters describing how to talk to the MCP server. That is what StreamableHttpServerParams is for.

What's happening:

  • url points to the Tool Router MCP endpoint from Composio
  • timeout is the HTTP timeout for requests
  • sse_read_timeout controls how long to wait when streaming responses
  • terminate_on_close=True cleans up the MCP server process when the workbench is closed
7

Create the model client and agent

python
# Create model client
model_client = OpenAIChatCompletionClient(
    model="gpt-5",
    api_key=os.getenv("OPENAI_API_KEY")
)

# Use McpWorkbench as context manager
async with McpWorkbench(server_params) as workbench:
    # Create Launch darkly assistant agent with MCP tools
    agent = AssistantAgent(
        name="launch_darkly_assistant",
        description="An AI assistant that helps with Launch darkly operations.",
        model_client=model_client,
        workbench=workbench,
        model_client_stream=True,
        max_tool_iterations=10
    )

What's happening:

  • OpenAIChatCompletionClient wraps the OpenAI model for Autogen
  • McpWorkbench connects the agent to the MCP tools
  • AssistantAgent is configured with the Launch darkly tools from the workbench
8

Run the interactive chat loop

python
print("Chat started! Type 'exit' or 'quit' to end the conversation.\n")
print("Ask any Launch darkly related question or task to the agent.\n")

# Conversation loop
while True:
    user_input = input("You: ").strip()

    if user_input.lower() in ["exit", "quit", "bye"]:
        print("\nGoodbye!")
        break

    if not user_input:
        continue

    print("\nAgent is thinking...\n")

    # Run the agent with streaming
    try:
        response_text = ""
        async for message in agent.run_stream(task=user_input):
            if hasattr(message, "content") and message.content:
                response_text = message.content

        # Print the final response
        if response_text:
            print(f"Agent: {response_text}\n")
        else:
            print("Agent: I encountered an issue processing your request.\n")

    except Exception as e:
        print(f"Agent: Sorry, I encountered an error: {str(e)}\n")
What's happening:
  • The script prompts you in a loop with You:
  • Autogen passes your input to the model, which decides which Launch darkly tools to call via MCP
  • agent.run_stream(...) yields streaming messages as the agent thinks and calls tools
  • Typing exit, quit, or bye ends the loop

Complete Code

Here's the complete code to get you started with Launch darkly and AutoGen:

python
import asyncio
import os
from dotenv import load_dotenv
from composio import Composio

from autogen_agentchat.agents import AssistantAgent
from autogen_ext.models.openai import OpenAIChatCompletionClient
from autogen_ext.tools.mcp import McpWorkbench, StreamableHttpServerParams

load_dotenv()

async def main():
    # Initialize Composio and create a Launch darkly session
    composio = Composio(api_key=os.getenv("COMPOSIO_API_KEY"))
    session = composio.create(
        user_id=os.getenv("USER_ID"),
        toolkits=["launch_darkly"]
    )
    url = session.mcp.url

    # Configure MCP server parameters for Streamable HTTP
    server_params = StreamableHttpServerParams(
        url=url,
        timeout=30.0,
        sse_read_timeout=300.0,
        terminate_on_close=True,
        headers={"x-api-key": os.getenv("COMPOSIO_API_KEY")}
    )

    # Create model client
    model_client = OpenAIChatCompletionClient(
        model="gpt-5",
        api_key=os.getenv("OPENAI_API_KEY")
    )

    # Use McpWorkbench as context manager
    async with McpWorkbench(server_params) as workbench:
        # Create Launch darkly assistant agent with MCP tools
        agent = AssistantAgent(
            name="launch_darkly_assistant",
            description="An AI assistant that helps with Launch darkly operations.",
            model_client=model_client,
            workbench=workbench,
            model_client_stream=True,
            max_tool_iterations=10
        )

        print("Chat started! Type 'exit' or 'quit' to end the conversation.\n")
        print("Ask any Launch darkly related question or task to the agent.\n")

        # Conversation loop
        while True:
            user_input = input("You: ").strip()

            if user_input.lower() in ['exit', 'quit', 'bye']:
                print("\nGoodbye!")
                break

            if not user_input:
                continue

            print("\nAgent is thinking...\n")

            # Run the agent with streaming
            try:
                response_text = ""
                async for message in agent.run_stream(task=user_input):
                    if hasattr(message, 'content') and message.content:
                        response_text = message.content

                # Print the final response
                if response_text:
                    print(f"Agent: {response_text}\n")
                else:
                    print("Agent: I encountered an issue processing your request.\n")

            except Exception as e:
                print(f"Agent: Sorry, I encountered an error: {str(e)}\n")

if __name__ == "__main__":
    asyncio.run(main())

Conclusion

You now have an Autogen assistant wired into Launch darkly through Composio's Tool Router and MCP. From here you can:
  • Add more toolkits to the toolkits list, for example notion or hubspot
  • Refine the agent description to point it at specific workflows
  • Wrap this script behind a UI, Slack bot, or internal tool
Once the pattern is clear for Launch darkly, you can reuse the same structure for other MCP-enabled apps with minimal code changes.
TOOLS

Supported Tools

Every Launch darkly action and event your agent gets out of the box.

Add Member to Teams

Tool to add a LaunchDarkly member to one or more teams.

Apply Approval Request

Tool to apply an approved approval request in LaunchDarkly.

Apply Approval Request for Flag

Tool to apply an approved approval request for a feature flag in LaunchDarkly.

Copy Feature Flag

Tool to copy a feature flag's configuration from one environment to another within the same project.

Create Announcement

Tool to create a public announcement in LaunchDarkly.

Create Approval Request

Tool to create an approval request in LaunchDarkly.

Create Approval Request for Flag

Tool to create an approval request for a feature flag in LaunchDarkly.

Create Approval Request Review

Tool to review an approval request by approving, declining, or commenting on changes.

Create Approval Request Review for Flag

Tool to review an approval request for a feature flag by approving, declining, or commenting on the changes.

Create Big Segment Export

Tool to create an export for a big segment in LaunchDarkly.

Create Big Segment Store Integration

Tool to create a persistent store integration for big segments in LaunchDarkly.

Create Custom Role

Tool to create a new custom role in LaunchDarkly.

Create Data Export Destination

Tool to create a new Data Export destination for exporting LaunchDarkly event data to external services.

Create Environment

Tool to create a new environment within a LaunchDarkly project.

Create Experiment

Tool to create a new experiment in LaunchDarkly.

Create Extinction Events

Tool to create new extinction events for feature flags in LaunchDarkly.

Create Feature Flag

Tool to create a new feature flag in LaunchDarkly.

Create Flag Scheduled Changes

Tool to create a scheduled changes workflow for a feature flag in LaunchDarkly.

Create Flag Copy Config Approval Request

Tool to create an approval request for copying a feature flag's configuration from one environment to another.

Create Flag Import Configuration

Tool to create a new flag import configuration for importing feature flags from external feature management systems like Split or Unleash.

Create Flag Link

Tool to create a new flag link in LaunchDarkly.

Create Holdout

Tool to create a new holdout in LaunchDarkly for experiment control groups.

Create Integration Configuration

Tool to create a new integration configuration in LaunchDarkly.

Create Experiment Iteration

Tool to create a new iteration for an experiment in LaunchDarkly.

Create Layer

Tool to create a new layer in a LaunchDarkly project.

Create Members

Tool to invite one or more new members to join a LaunchDarkly account.

Create Metric

Tool to create a new metric in LaunchDarkly.

Create Metric Group

Tool to create a new metric group in LaunchDarkly.

Create Migration Safety Issues

Tool to check migration safety issues for a feature flag patch.

Create OAuth 2.0 Client

Tool to create (register) a LaunchDarkly OAuth 2.

Create Project

Tool to create a new project with the given key and name.

Create Relay Proxy Auto Configuration

Tool to create a new Relay Proxy configuration in LaunchDarkly.

Create Release for Flag

Tool to create a release by adding a flag to a release pipeline in LaunchDarkly.

Create Release Pipeline

Tool to create a release pipeline in LaunchDarkly.

Create Release Policy

Tool to create a new release policy for a specified project.

Create Repository

Tool to create a code reference repository with the specified name.

Create Segment

Tool to create a new segment in LaunchDarkly.

Create Audit Log Subscription

Tool to create a new audit log subscription for forwarding LaunchDarkly audit events to external services.

Create Team

Tool to create a new team in LaunchDarkly.

Create Flag Trigger Workflow

Creates a flag trigger workflow in LaunchDarkly.

Create Webhook

Tool to create a new webhook in LaunchDarkly.

Create Workflow

Tool to create a workflow in LaunchDarkly for automating flag changes.

Create Workflow Template

Tool to create a workflow template in LaunchDarkly.

Delete Announcement

Tool to permanently delete an announcement from LaunchDarkly.

Delete Approval Request

Tool to delete an approval request in LaunchDarkly.

Delete Approval Request for Flag

Permanently deletes an approval request for a feature flag in LaunchDarkly.

Delete Big Segment Store Integration

Tool to permanently delete a persistent store integration for big segments.

Delete Branches from Code Reference Repository

Asynchronously deletes multiple branches from a LaunchDarkly code reference repository.

Delete Custom Role

Permanently deletes a custom role from LaunchDarkly.

Delete Data Export Destination

Permanently deletes a Data Export destination from LaunchDarkly.

Delete Environment

Tool to permanently delete an environment from a LaunchDarkly project.

Delete Feature Flag

Tool to permanently delete a feature flag from LaunchDarkly.

Delete Flag Scheduled Changes

Tool to delete scheduled changes workflow for a feature flag in LaunchDarkly.

Delete Flag Import Configuration

Tool to delete a flag import configuration by ID.

Delete Flag Link

Permanently deletes a flag link from LaunchDarkly.

Delete Integration Configuration

Permanently deletes an integration configuration from LaunchDarkly.

Delete Account Member

Tool to permanently delete an account member from LaunchDarkly.

Delete Metric

Tool to permanently delete a metric from LaunchDarkly.

Delete Metric Group

Tool to permanently delete a metric group from LaunchDarkly.

Delete OAuth 2.0 Client

Permanently deletes an OAuth 2.

Delete Project

Tool to permanently delete a project from LaunchDarkly.

Delete Relay Proxy Auto Configuration

Tool to delete a Relay Proxy auto configuration by ID.

Delete Release by Flag Key

Tool to delete a release from a feature flag.

Delete Release Pipeline

Tool to permanently delete a release pipeline from LaunchDarkly.

Delete Release Policy

Tool to permanently delete a release policy from a LaunchDarkly project.

Delete Repository

Tool to delete a code reference repository with the specified name.

Delete Segment

Permanently deletes a segment from LaunchDarkly.

Delete Audit Log Subscription

Tool to permanently delete an audit log subscription in LaunchDarkly.

Delete Team

Permanently deletes a team from LaunchDarkly organization.

Delete Access Token

Tool to permanently delete an access token from LaunchDarkly.

Delete Flag Trigger Workflow

Permanently deletes a flag trigger workflow from LaunchDarkly.

Delete Webhook

Tool to delete a webhook from LaunchDarkly.

Delete Workflow

Permanently deletes a workflow from LaunchDarkly.

Delete Workflow Template

Permanently deletes a workflow template from LaunchDarkly.

Evaluate Context Instance

Tool to evaluate flags for a context instance to determine expected flag variations.

Generate Trust Policy for Data Export

Tool to generate an AWS trust policy for Data Export destinations.

Get All Holdouts

Tool to retrieve all holdouts for a specific project and environment.

Get All Integration Configurations

Tool to retrieve all integration configurations for a specific integration key.

Get All Release Pipelines

Tool to retrieve all release pipelines for a project.

Get All Webhooks

Tool to retrieve all webhooks configured in the LaunchDarkly account.

Get Announcements Public

Tool to retrieve public announcements from LaunchDarkly.

Get Applications

Tool to retrieve a list of applications in LaunchDarkly.

Get Application Versions

Tool to retrieve all versions for a specific application in LaunchDarkly.

Get Approval for Flag

Tool to get a single approval request for a feature flag in LaunchDarkly.

Get Approval Request

Tool to get a specific approval request by ID from LaunchDarkly.

Get Approval Requests

Tool to retrieve all approval requests from LaunchDarkly.

Get Approval Request Settings

Tool to retrieve approval request settings for a project.

Get Approvals for Flag

Tool to retrieve all approval requests for a specific feature flag in an environment.

Get Audit Log Entries

Tool to get a list of all audit log entries.

Get Audit Log Entry

Tool to retrieve a single audit log entry by ID.

Get Big Segment Export

Tool to retrieve a specific big segment export by its ID.

Get Big Segment Import

Tool to retrieve the status and details of a big segment import by its ID.

Get Big Segment Store Integration

Tool to retrieve a specific persistent store integration for big segments by its ID.

Get Big Segment Store Integrations

Tool to retrieve all persistent store integrations for big segments.

Get Branch

Tool to retrieve branch information from a LaunchDarkly code reference repository.

Get Caller Identity

Tool to retrieve basic information about the identity used to authenticate API calls.

Get Context Attribute Names

Tool to retrieve context attribute names for a project and environment.

Get Context Attribute Values

Tool to retrieve unique values for a specific context attribute within a project environment.

Get Context Instances

Tool to get context instances for a specific context ID within a project and environment.

Get Context Kinds By Project Key

Tool to retrieve all context kinds for a given project.

Get Contexts

Tool to retrieve context instances from a LaunchDarkly environment by kind and key.

Get Contexts Clientside Usage

Tool to get a detailed time series of context key usages observed by LaunchDarkly in your account, including non-primary context kinds.

Get Contexts Serverside Usage

Tool to get detailed time series of context key usages observed by LaunchDarkly in your account, including non-primary context kinds.

Get Contexts Total Usage

Tool to get a detailed time series of the number of context key usages observed by LaunchDarkly in your account, including non-primary context kinds.

Get Context Instance Segments Membership By Environment

Tool to get segment membership details for a given context instance with attributes.

Get Custom Role

Tool to retrieve a single custom role by key or ID.

Get Custom Roles

Tool to retrieve a list of all custom roles.

Get Custom Workflow

Tool to retrieve details of a specific custom workflow by ID.

Get Data Export Events Usage

Tool to retrieve a time series array showing the number of data export events from your account.

Get Dependent Flags

Tool to list dependent feature flags for a specific flag.

Get Dependent Flags By Environment

Tool to list dependent flags across all environments for a specified flag.

Get Data Export Destination

Tool to retrieve a specific Data Export destination by ID.

Get Data Export Destinations

Tool to retrieve all Data Export destinations configured across all projects and environments.

Get Environment

Tool to retrieve a specific environment by project key and environment key.

Get Environments

Tool to retrieve a list of all environments within a project.

Get Evaluations Usage

Tool to get time-series arrays of flag evaluation counts, broken down by variation.

Get Events Usage

Tool to get time-series arrays of flag evaluation events.

Get Experiment

Tool to retrieve a specific experiment by project key, environment key, and experiment key.

Get Experimentation Events Usage

Tool to retrieve a time series array showing the number of experimentation events from your account.

Get Experimentation Keys Usage

Tool to get a time series showing the number of experimentation keys from your account.

Get Experimentation Settings

Tool to retrieve experimentation settings for a project.

Get Experiments

Tool to retrieve experiments from a project and environment.

Get Expiring Context Targets

Tool to retrieve context targets scheduled for removal from a feature flag.

Get Expiring Targets For Segment

Tool to retrieve context targets scheduled for removal from a segment.

Get Extinctions

Tool to get a list of all extinctions.

Get Feature Flag

Tool to retrieve a specific feature flag by project key and flag key.

Get Feature Flags

Tool to retrieve a list of all feature flags in a project.

Get Feature Flag Scheduled Change

Tool to retrieve a specific scheduled change for a feature flag.

Get Feature Flag Status

Tool to retrieve the status of a feature flag.

Get Feature Flag Status Across Environments

Tool to retrieve the status of a feature flag across all environments in a project.

Get Feature Flag Statuses

Tool to retrieve status information for all feature flags in a project environment.

Get Flag Scheduled Changes

Tool to retrieve scheduled changes for a feature flag.

Get Flag Defaults by Project

Tool to retrieve flag defaults for a specific project.

Get Flag Followers

Tool to retrieve followers of a flag in a project and environment.

Get Flag Import Configuration

Tool to retrieve a single flag import configuration by project key, integration key, and integration ID.

Get Flag Import Configurations

Tool to list all flag import configurations.

Get Flag Links

Tool to retrieve all flag links for a specific feature flag.

Get Followers By Project and Environment

Tool to retrieve followers of all flags in a given project and environment.

Get Holdout

Tool to retrieve a specific holdout experiment by project key, environment key, and holdout key.

Get Integration Configuration

Tool to retrieve a specific integration configuration by ID.

Get Integration Delivery Configuration by Environment

Tool to get delivery configurations by environment for feature store integrations.

Get IPs

Tool to retrieve the list of IP ranges used by the LaunchDarkly service.

Get Layers

Tool to retrieve layers for a project.

Get MAU Clientside Usage

Tool to get a time series of context key usages observed by LaunchDarkly client-side SDKs for the primary context kind.

Get MAU Total Usage

Tool to get a time series of the number of context key usages observed by LaunchDarkly in your account, for the primary context kind only.

Get MAU Usage

Tool to get a time-series array of monthly active users (MAU) seen by LaunchDarkly from your account.

Get MAU Usage By Category

Tool to get time-series arrays of monthly active users (MAU) by category (browser, mobile, or backend).

Get Account Member

Tool to retrieve detailed information about a specific LaunchDarkly account member.

Get Members

Tool to retrieve a list of account members.

Get Metric

Tool to retrieve a specific metric by project key and metric key.

Get Metric Group

Tool to retrieve a specific metric group by project key and metric group key.

Get OAuth 2.0 Client by ID

Tool to retrieve a registered OAuth 2.

Get OAuth 2.0 Clients

Tool to retrieve all OAuth 2.

Get Observability Errors Usage

Tool to get time-series arrays of the number of observability errors.

Get Observability Logs Usage

Tool to retrieve time-series arrays of observability logs usage data.

Get Observability Sessions Usage

Tool to get time-series arrays of the number of observability sessions.

Get Observability Traces Usage

Tool to retrieve time-series arrays of observability traces usage data.

Get OpenAPI Spec

Tool to retrieve the latest OpenAPI specification for LaunchDarkly's API in JSON format.

Get Project

Tool to retrieve a specific project by project key.

Get Relay Proxy Config

Tool to retrieve a single Relay Proxy auto configuration by ID.

Get Relay Proxy Configs

Tool to retrieve all Relay Proxy configurations in the LaunchDarkly account.

Get Release by Flag Key

Tool to retrieve the currently active release for a feature flag.

Get Release Pipeline by Key

Tool to retrieve a release pipeline by its key.

Get Release Policies

Tool to retrieve a list of release policies for a specified project.

Get Release Policy

Tool to retrieve a single release policy by its key for a specified project.

Get All Release Progressions for Release Pipeline

Tool to retrieve details on the progression of all releases, across all flags, for a release pipeline.

Get Repository

Tool to get a single code reference repository by name.

Get Root

Tool to retrieve the LaunchDarkly API root resource.

Get Root Code Reference Statistic

Tool to get links to code reference repositories for each project.

Get Segment

Tool to retrieve a specific segment by segment key.

Get Segment Membership For Context

Tool to get big segment membership status for a specific context.

Get Segments

Tool to retrieve a list of all segments in a project and environment.

Get Service Connections Usage

Tool to get a time series array showing the number of service connection minutes from your account.

Get Code References Statistics

Tool to retrieve code references statistics for feature flags.

Get Stream Usage

Tool to get time-series data of streaming connections to LaunchDarkly.

Get Stream Usage By SDK Version

Tool to get time-series data of streaming connections to LaunchDarkly, separated by SDK type and version.

Get Stream Usage SDK Versions

Tool to get a list of SDK version objects from LaunchDarkly.

Get Audit Log Subscription by ID

Tool to retrieve a specific audit log subscription by ID.

Get Audit Log Subscriptions by Integration

Tool to retrieve all audit log subscriptions for a given integration.

Get Tags

Tool to retrieve a list of tags from LaunchDarkly.

Get Team

Tool to fetch a specific team by key.

Get Team Maintainers

Tool to retrieve the list of maintainers for a specific LaunchDarkly team.

Get Team Roles

Tool to fetch the custom roles that have been assigned to a team.

Get Access Token

Tool to retrieve detailed information about a specific LaunchDarkly access token by its ID.

Get Tokens

Tool to fetch a list of all access tokens.

Get Flag Trigger by ID

Tool to retrieve details of a specific flag trigger by ID.

Get Flag Trigger Workflows

Tool to retrieve all flag triggers for a specific feature flag in an environment.

Get Versions

Tool to retrieve LaunchDarkly API version information.

Get Webhook

Tool to retrieve a specific webhook by ID.

Get Workflows

Tool to retrieve workflows for a specific feature flag in an environment.

Get Workflow Templates

Tool to retrieve workflow templates belonging to an account.

List Branches in Code Reference Repository

Tool to list branches in a LaunchDarkly code reference repository.

List Code Reference Repositories

Lists all code reference repositories configured in LaunchDarkly.

List Integration Delivery Configurations

Tool to list all integration delivery configurations.

List Metric Groups

Tool to retrieve a list of all metric groups in a project.

List Metrics

Tool to retrieve a list of all metrics in a project.

List Projects

Tool to retrieve a list of all projects.

List Teams

Fetches one page of teams from LaunchDarkly.

Patch Approval Request Settings

Tool to perform a partial update to approval request settings for a project.

Patch Big Segment Store Integration

Tool to update a persistent store integration for big segments using JSON Patch operations.

Patch Custom Role

Tool to update a custom role's settings using JSON Patch operations.

Update Data Export Destination

Tool to update a Data Export destination using JSON Patch operations.

Patch Environment

Tool to update an environment's settings using JSON Patch operations.

Patch Experiment

Tool to update an experiment using semantic patch format.

Patch Expiring Targets

Tool to update expiring context targets on a feature flag.

Patch Feature Flag

Tool to update a feature flag's settings using JSON Patch operations.

Patch Flag Config Approval Request

Tool to perform a partial update to a flag config approval request using semantic patch format.

Patch Flag Scheduled Change

Tool to update a scheduled change workflow for a feature flag.

Patch Flag Defaults By Project

Tool to update flag defaults for a project using JSON Patch operations.

Patch Flag Import Configuration

Tool to update a flag import configuration using JSON Patch operations.

Patch Holdout

Tool to update a LaunchDarkly holdout using semantic patch operations.

Patch Account Member

Tool to modify an account member's information using JSON Patch operations.

Patch Members

Tool to perform partial updates to multiple LaunchDarkly account members using semantic patch format.

Patch Metric

Tool to update a metric's settings using JSON Patch operations.

Patch Metric Group

Tool to update a metric group's settings using JSON Patch operations.

Patch OAuth 2.0 Client

Tool to update an existing OAuth 2.

Update Project

Tool to update a LaunchDarkly project using JSON Patch operations (RFC 6902).

Update Relay Proxy Config

Tool to update a Relay Proxy auto configuration using JSON Patch operations (RFC 6902).

Patch Repository

Tool to update a code reference repository's settings using JSON Patch operations.

Patch Segment

Tool to update a segment's settings using JSON Patch operations.

Patch Team

Tool to perform partial updates to a LaunchDarkly team using semantic patch format.

Patch Teams

Tool to perform partial updates to multiple LaunchDarkly teams using semantic patch format.

Patch Access Token

Tool to update an access token's settings using JSON Patch operations.

Update Flag Trigger

Tool to update a flag trigger using semantic patch operations.

Update Webhook

Tool to update a LaunchDarkly webhook using JSON Patch operations (RFC 6902).

Create or Update Flag Defaults by Project

Tool to create or update flag defaults for a specific project.

Reset Environment Mobile Key

Tool to reset the mobile SDK key for a specific environment.

Reset Environment SDK Key

Tool to reset the SDK key for a specific environment.

Reset Relay Proxy Configuration Key

Tool to reset the Relay Proxy configuration key.

Reset Access Token

Tool to reset a LaunchDarkly access token, generating a new token value.

Search Audit Log Entries

Search audit log entries in LaunchDarkly.

Search Context Instances

Tool to search for context instances within a project and environment.

Search Contexts

Tool to search for contexts in a LaunchDarkly environment with flexible filtering and sorting.

Trigger Flag Import Job

Tool to trigger a single flag import run for an existing flag import configuration.

Update Announcement

Tool to update an existing announcement in LaunchDarkly using JSON Patch operations.

Update Big Segment Context Targets

Tool to update context targets included or excluded in a big segment.

Update Context Flag Setting

Tool to enable or disable a feature flag for a specific context based on its context kind and key.

Create or Update Context Kind

Tool to create or update a context kind in a LaunchDarkly project.

Update Experimentation Settings

Tool to update experimentation settings for a project.

Update Flag Link

Tool to update an existing flag link in LaunchDarkly using JSON Patch operations.

Update Integration Configuration

Tool to update an existing integration configuration in LaunchDarkly using JSON Patch operations.

Update Layer

Tool to update a layer using semantic patch instructions.

Update Phase Status

Tool to update the execution status of a phase in a feature flag release.

Update Release Pipeline

Tool to update an existing release pipeline in LaunchDarkly.

Update Release Policies Order

Tool to update the order of existing release policies for a project.

Update Release Policy

Tool to update an existing release policy for a specified project.

Update Audit Log Subscription

Tool to update an audit log subscription configuration using JSON Patch operations.

Upsert Branch in Code Reference Repository

Tool to upsert (create or update) a branch in a LaunchDarkly code reference repository.

FAQ

Frequently asked questions

With a standalone Launch darkly MCP server, the agents and LLMs can only access a fixed set of Launch darkly tools tied to that server. However, with the Composio Tool Router, agents can dynamically load tools from Launch darkly and many other apps based on the task at hand, all through a single MCP endpoint.

Yes, you can. Autogen fully supports MCP integration. You get structured tool calling, message history handling, and model orchestration while Tool Router takes care of discovering and serving the right Launch darkly tools.

Yes, absolutely. You can configure which Launch darkly scopes and actions are allowed when connecting your account to Composio. You can also bring your own OAuth credentials or API configuration so you keep full control over what the agent can do.

All sensitive data such as tokens, keys, and configuration is fully encrypted at rest and in transit. Composio is SOC 2 Type 2 compliant and follows strict security practices so your Launch darkly data and credentials are handled as safely as possible.

Start with Launch darkly.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Launch darkly tool your agent needs.Free to start.

Start building