L

LaunchDarkly

Query and update LaunchDarkly feature flags.

·No reviews yet
Repo
Share:

About

Auto-generated

LaunchDarkly is a Model Context Protocol server in the Analytics & Monitoring category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about LaunchDarkly.

What is the purpose of the LaunchDarkly MCP server?
The LaunchDarkly MCP server allows users to query and update LaunchDarkly feature flags. This enables programmatic control over feature rollouts and experiments directly from an MCP client.
How do I configure the LaunchDarkly MCP in an MCP client?
To configure the LaunchDarkly MCP, you will need to specify the transport as 'stdio' and provide your LaunchDarkly API key as the authentication credential. The specific setup steps depend on your MCP client.
Does the LaunchDarkly MCP require an API key?
Yes, the LaunchDarkly MCP requires an API key for authentication. This API key is used to authorize requests to the LaunchDarkly service, ensuring secure access to your feature flags.
What capabilities does the LaunchDarkly MCP expose?
The LaunchDarkly MCP exposes capabilities for querying and updating feature flags within LaunchDarkly. Users can read the current state of flags and modify them, which is useful for automated testing or operational tasks.
Is there a cost associated with using the LaunchDarkly MCP?
The LaunchDarkly MCP itself is community-provided and open-source, so there is no direct cost for the MCP server. However, usage of the underlying LaunchDarkly service is subject to its own pricing and licensing.
What is a prerequisite for using the LaunchDarkly MCP?
A prerequisite for using the LaunchDarkly MCP is an existing LaunchDarkly account and an associated API key. Without these, the MCP server cannot authenticate with the LaunchDarkly service to manage feature flags.

Install LaunchDarkly

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "launchdarkly": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-launchdarkly"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "launchdarkly": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-launchdarkly"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "launchdarkly": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-launchdarkly"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.