LaunchDarkly MCP Server
DevOpsstdiov0.1.0
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.
Connect
Add this configuration to .claude/mcp.json
{
"mcpServers": {
"launchdarkly": {
"command": "npx",
"args": [
"-y",
"@launchdarkly/mcp-server"
],
"env": {
"LAUNCHDARKLY_API_KEY": "<YOUR_LAUNCHDARKLY_API_KEY>"
}
}
}
}Tools (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"
}
}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server Information
- License
- Apache-2.0
- Version
- 0.1.0
- Stars
- 190
- Last Updated
- July 9, 2026