LaunchDarkly MCP Server

DevOpsstdiov0.1.0
Repositorio

Official LaunchDarkly MCP server for feature management. Lets AI agents create and toggle feature flags, manage targeting rules and segments, and inspect flag status across environments. Useful for progressive delivery, kill switches, experimentation, and automating flag lifecycle from an AI assistant.

Conectar

Añade esta configuración a .claude/mcp.json

{
  "mcpServers": {
    "launchdarkly": {
      "command": "npx",
      "args": [
        "-y",
        "@launchdarkly/mcp-server"
      ],
      "env": {
        "LAUNCHDARKLY_API_KEY": "<YOUR_LAUNCHDARKLY_API_KEY>"
      }
    }
  }
}

Herramientas (2)

list_flags

List feature flags in a project and environment.

{
  "type": "object",
  "required": [
    "project_key"
  ],
  "properties": {
    "project_key": {
      "type": "string",
      "description": "LaunchDarkly project key"
    }
  }
}

toggle_flag

Turn a feature flag on or off in a given environment.

{
  "type": "object",
  "required": [
    "flag_key",
    "environment",
    "enabled"
  ],
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Whether the flag should be on"
    },
    "flag_key": {
      "type": "string",
      "description": "Feature flag key"
    },
    "environment": {
      "type": "string",
      "description": "Environment key"
    }
  }
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
LaunchDarkly (@launchdarkly)
Repositorio
https://github.com/launchdarkly/mcp-server
Licencia
Apache-2.0
Versión
0.1.0
Estrellas
190
Última actualización
9 de julio de 2026