Is LaunchDarkly MCP hosted?
Yes. LaunchDarkly provides a hosted MCP endpoint using OAuth, and it also maintains a local server option for clients and deployment models that require one.
Provides AI-assisted access to LaunchDarkly feature flags, AI Configs, environments, and observability workflows.
Looking for more MCP servers? Browse the full MCP tools directory or explore more tools in Developer Tools.
LaunchDarkly MCP exposes the control plane behind progressive delivery, which means a natural-language request can affect the behavior of production software even if no deployment occurs. Its powerful edge is environment-aware flag inspection, targeting analysis, AI Config evaluation, and change management through an authenticated conversational interface. The hidden failure mode is environment drift: an agent reads a flag in one project or environment and proposes a change for another, producing a technically valid operation with the wrong release impact. Use the hosted OAuth endpoint when appropriate, keep read and write workflows separate, require project, environment, flag key, context kind, and rollout confirmation, and treat flag mutations as production changes with audit and approval semantics. A silent failure can occur when a flag is updated successfully but the application evaluates a different SDK environment, cached configuration, context kind, or targeting rule; the fix is to compare LaunchDarkly state with the application evaluation reason and the deployed SDK environment. AI Configs introduce an additional boundary because prompt, model, and parameter changes can alter application behavior without a binary feature release. Require staged rollouts, fallback validation, change windows, and rollback ownership. LaunchDarkly MCP should therefore be designed as a controlled progressive-delivery interface, not as a general-purpose chatbot that happens to edit feature flags.
Choose LaunchDarkly MCP when you want an MCP server focused on Developer Tools and need tighter integration with your existing tools.
Good fit
Use the following configuration as a starting point for Claude Desktop or any compatible MCP client, then replace placeholder credentials with your own values.
{
"mcpServers": {
"launchdarkly": {
"url": "https://mcp.launchdarkly.com/mcp/launchdarkly"
}
}
}These setup steps cover the typical installation flow for this MCP server.
Add the hosted LaunchDarkly MCP endpoint https://mcp.launchdarkly.com/mcp/launchdarkly to the MCP client.
Complete OAuth authentication and verify the organization and projects visible to the session.
Begin with read-only flag, environment, AI Config, and observability operations.
Before any mutation, confirm project, environment, flag key, context kind, and rollout percentage.
Record the resulting change in the normal LaunchDarkly audit and release workflow.
Pro-Tip: Never accept a flag name without its environment and project context; require the agent to echo the exact target before changing production behavior.
Common questions for LaunchDarkly MCP.
Yes. LaunchDarkly provides a hosted MCP endpoint using OAuth, and it also maintains a local server option for clients and deployment models that require one.
The available operations depend on the authenticated permissions and enabled tools. Production mutations should require explicit approval and normal LaunchDarkly change controls.
A flag read can appear successful while describing the wrong environment or context kind, causing an apparently correct rollout decision to be irrelevant to real users. Fix it by requiring project, environment, flag key, context kind, and evaluation reason in every diagnostic response.
Use separate permissions and approval rules for AI Config changes, validate targeting and fallback behavior, and audit changes alongside feature-flag operations.
| Feature | LaunchDarkly MCP | Competitor |
|---|---|---|
| Progressive Delivery | ✅ Reads and manages feature flags and environments through MCP | ❌ Static configuration files |
| Rollout Context | ✅ Can inspect environment and targeting context before a change | ❌ Generic deployment automation |
| Agent Operations | ✅ Supports contextual flag workflows through an authenticated hosted endpoint | ❌ Webhook-only feature-flag triggers |
| Change Governance | ✅ Integrates with LaunchDarkly permissions and audit context | ❌ Untracked environment-variable toggles |