new_checkout
Single-step checkout flow, FME-managed
Environment
production
Off0% rollout
Targeting rules
- segment IN ('beta-testers') ENABLE 100%
- segment IN ('internal-users') ENABLE 100%
- ELSE off
Integration · Split.io / Harness FME
Split.io is now part of Harness. AI access happens via the Harness platform MCP, scoped to the FME (Feature Management & Experimentation) toolset.
The Harness MCP exposes 137 resource types across the entire Harness DevOps platform. For experimentation focus, set HARNESS_TOOLSETS=feature-flags so the agent sees just the FME workspaces, environments, flags, and segments. Without scoping the agent gets the full DevOps surface, which crowds tool selection on smaller models.
What you can do via MCP
“List all FME workspaces and environments.”
Returns the FME workspace list with their environments so the agent can route subsequent calls to the right scope.
“Create a new feature flag in the production workspace.”
Creates the flag in the named FME workspace, returns the key, and stages the SDK integration snippet.
“Toggle the new-checkout flag in environment staging.”
Updates flag state in the staging environment via the Harness MCP and confirms the rollout config.
“Update targeting rules for the pricing-test flag.”
Edits the targeting rule list, surfaces the diff, and confirms the change applied to the right environment.
“Archive the post-launch flag for the December release.”
Archives the flag with the right metadata so historical audit trails stay intact and the SDK stops evaluating it.
Local Harness MCP invocation, scoped to feature flags. The HARNESS_TOOLSETS env var keeps the agent's view focused on FME.
# Harness MCP, scoped to FME toolset
# Run with: HARNESS_API_KEY=pat_abc \
# HARNESS_TOOLSETS=feature-flags \
# npx harness-mcp-v2
mcp.harness.create_feature_flag({
workspace: "production",
environment: "production",
name: "new-checkout",
key: "new_checkout",
variations: [
{ name: "on", value: true },
{ name: "off", value: false }
],
defaultVariation: "off"
})
# IMPORTANT: omit HARNESS_TOOLSETS to get all 137 resource typesMCP integration
Visual demonstration
new_checkout
Single-step checkout flow, FME-managed
Environment
production
Off0% rollout
Targeting rules
CLI alternative
Harness ships a CLI for build-time flag evaluation, CI integration, and bulk operations. For AI-driven feature work the scoped MCP is the right interface; the CLI fills in for non-agent flows.
Pairs with these skills
This integration pairs with the forthcoming feature-flagging skill. The skill landing pages and SKILL.md sources land in subsequent dispatches; cross-link hyperlinks are added when the skill pages ship.