new-checkout
New checkout flow with single-step billing
Environment
production
On50% rollout
Targeting rules
- segment IS beta-testers ENABLE 100%
- segment IS internal-users ENABLE 100%
- ELSE rollout 50%
Integration · LaunchDarkly
LaunchDarkly is the largest pure-play feature flag platform. Three hosted MCP servers cover feature management, AI Configs (LLM rollout settings), and observability.
Use the hosted MCPs via OAuth, or self-host locally with an API key. The Federal environment is supported via a --server-url flag, so government and regulated customers get the same agent surface as commercial. Customers include Netflix, Atlassian, Square, IBM.
What you can do via MCP
“Create a feature flag for the new-checkout feature, default off.”
Creates the flag in the LaunchDarkly project, sets the default off, returns the SDK snippet for the chosen language.
“Toggle the pricing-banner flag on in production for 50% of users.”
Updates the production targeting rules to a 50% rollout and confirms the change took effect.
“List all stale flags across all environments and create a cleanup plan.”
Pulls flag list, scores by last evaluation, surfaces a prioritized cleanup plan grouped by owner team.
“Update targeting rules for the experimental-feature flag to include only beta-testers segment.”
Edits the targeting rule list with the new segment, surfaces the diff, and applies it to the right environment.
“Show me the status of the new-onboarding flag across dev, staging, and production.”
Returns a per-environment status matrix with rollout percentages and the last change author.
Local server invocation against the feature management MCP. Hosted alternatives via OAuth are equivalent and skip the env-var step.
# LaunchDarkly MCP, local
# Run: LD_API_KEY=api-abc \
# npx @launchdarkly/mcp-server
mcp.launchdarkly.create_feature_flag({
project_key: "default",
key: "new-checkout",
name: "New checkout flow",
variations: [
{ value: true, name: "on" },
{ value: false, name: "off" }
],
defaults: { onVariation: 0, offVariation: 1 },
temporary: false
})
# Hosted alternative: OAuth via skills.sh agent-skills
# Federal: pass --server-url <gov-endpoint>MCP integration
Visual demonstration
new-checkout
New checkout flow with single-step billing
Environment
production
On50% rollout
Targeting rules
old-search-v1
StaleLast evaluated 94 days ago · @search-team
Pre-redesign search; new search is in production
checkout-experiment-q3
StaleLast evaluated 61 days ago · @growth
Experiment ended, ship variant on; flag still gating
new-onboarding
ActiveLast evaluated 3 minutes ago · @onboarding
Active rollout at 50%
ai-recommendations
ActiveLast evaluated 1 minute ago · @ai-platform
AI Config: model A vs model B routing
CLI alternative
LaunchDarkly has a comprehensive REST API for direct programmatic access. The MCP is the AI-native interface; the REST API covers CI integration, scripted reporting, and any non-agent workflow. Most teams use both: MCP for agent-driven flag work, REST for build-time and ops automation.
Pairs with these skills
This integration pairs with the forthcoming feature-flagging, experiment-design skills. The skill landing pages and SKILL.md sources land in subsequent dispatches; cross-link hyperlinks are added when the skill pages ship.