LaunchDarkly MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@LaunchDarkly MCP ServerList my feature flags in the production environment"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
LaunchDarkly MCP Server
An MCP (Model Context Protocol) server that lets AI assistants (Claude, Cursor, etc.) manage LaunchDarkly feature flags via natural language.
Quick Start
Prerequisites
Python 3.10+
A LaunchDarkly API access token (create one here)
Install & Run
# Install from PyPI
pip install launchdarkly-mcp-server
# Set your API key
export LD_API_KEY="your-api-key-here"
# Run the server
launchdarkly-mcpOr use uvx (no install needed):
export LD_API_KEY="your-api-key-here"
uvx launchdarkly-mcp-serverClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"launchdarkly": {
"command": "uvx",
"args": ["launchdarkly-mcp-server"],
"env": {
"LD_API_KEY": "your-api-key-here"
}
}
}
}Restart Claude Desktop and look for the hammer icon — your LaunchDarkly tools are ready.
Related MCP server: Flipt MCP Server
Available Tools
Phase 1 — Read-only
Tool | Description |
| List all projects in the account |
| List feature flags for a project (filterable by env, limit, offset) |
| Get detailed flag config including targeting rules |
| List environments for a project |
| Search audit log with LD filter syntax or convenience params |
| Check if a flag is on/off in a specific environment |
Phase 2 — Write operations
Tool | Description |
| Turn a flag on/off in a specific environment |
| Add or remove users/contexts from targeting |
| Create a new feature flag skeleton |
| Check flag dependencies |
Examples
Ask Claude:
"What projects do I have in LaunchDarkly?"
"List my feature flags in the production environment"
"Turn on the
new-checkoutflag in staging"
"Who made changes to the
dark-modeflag in the last week?"
"Add user
alice@example.comto the beta flag targeting"
Development
git clone https://github.com/your-org/launchdarkly-mcp-server
cd launchdarkly-mcp-server
uv venv
uv pip install -e ".[dev]"Run tests:
uv run pytestArchitecture
AI Assistant ── MCP (stdio) ──► launchdarkly-mcp-server ── HTTPS ──► LaunchDarkly APIBuilt with fastmcp (Python).
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
An MCP server that provides an API to LLMs to manage their JumpCloud resources.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server that lets AI assistants use all OneSchema features exposed via the public API.
MCP server for AI dialogue using various LLM models via AceDataCloud
Related MCP Servers
- AlicenseBqualityDmaintenanceAn MCP server that allows AI assistants to programmatically manage Unleash feature flags through natural language, enabling operations like creating, updating, and retrieving feature flags across projects.543ISC

Flipt MCP Serverofficial
AlicenseCqualityAmaintenanceFlipt’s MCP server allows AI assistants and LLMs to directly interact with your feature flags, segments, and evaluations through a standardized interface. For example, you could ask your AI assistant: “What’s the current state of the ‘dark-mode’ flag?”28245Apache 2.0
@shipeasy/mcpofficial
AlicenseNot gradedqualityAmaintenanceA unified MCP server for experimentation and i18n, enabling AI assistants to manage feature flags, experiments, metrics, events, and string translations via natural language.677MIT- FlicenseBqualityDmaintenanceMCP server for Loggy that enables AI coding assistants to manage heartbeats, status pages, uptime monitors, feature flags, and logs via natural language.15-