Agent Setup

Connect your AI coding agent to Flipswitch in 3 steps

Connect your coding agent to Flipswitch. Any agent that supports MCP servers and skills will work — below are setup instructions for common tools.

Prerequisites: You need a Flipswitch account and a coding agent with MCP support.

Install Flipswitch skills

npx skills add flipswitch-io/skills

This installs the Flipswitch skills package, which gives your agent pre-built workflows for common Flipswitch tasks.

Connect the MCP server

Point your agent at the Flipswitch MCP server. The setup differs per tool.

claude mcp add --scope user --transport http flipswitch https://mcp.flipswitch.io/mcp

Add to ~/.codex/config.toml:

[mcp_servers.flipswitch]
url = "https://mcp.flipswitch.io/mcp"

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "flipswitch": {
      "url": "https://mcp.flipswitch.io/mcp"
    }
  }
}

Add to .vscode/mcp.json:

{
  "servers": {
    "flipswitch": {
      "type": "http",
      "url": "https://mcp.flipswitch.io/mcp"
    }
  }
}

Run setup

Ask your agent to set up Flipswitch, or run /flipswitch-setup in Claude Code.

The agent will authenticate with your Flipswitch account, then walk through setup interactively.

What happens next

Once you run setup, the agent:

  1. Detects your project's language and framework
  2. Installs the appropriate Flipswitch SDK
  3. Writes initialization code in your project
  4. Optionally creates your first feature flag

You end up with a working Flipswitch integration without writing any boilerplate yourself.

More info

See the flipswitch-io/skills repository for detailed documentation on available skills and MCP server capabilities.

On this page