Flipswitch feature flags for your AI coding tool. Create, manage, and integrate feature flags without leaving your editor.
| Skill | Description |
|---|---|
/flipswitch-setup |
Detect your language, install the SDK, write init code, create an example flag |
/flipswitch-create |
Create a new feature flag and get evaluation code |
/flipswitch-status |
Overview of all flags with on/off status per environment |
/flipswitch-toggle |
Enable or disable a flag in a specific environment |
npx skills add flipswitch-io/skillsThis works with Claude Code, GitHub Copilot, Cursor, VS Code, and any tool that supports Agent Skills.
The skills communicate with Flipswitch through an MCP server. Configure it for your tool:
claude mcp add --scope user --transport http flipswitch https://mcp.flipswitch.io/mcpThen restart Claude Code or run /mcp reload.
Add to .vscode/mcp.json:
{
"servers": {
"flipswitch": {
"type": "http",
"url": "https://mcp.flipswitch.io/mcp"
}
}
}Add to .cursor/mcp.json:
{
"mcpServers": {
"flipswitch": {
"url": "https://mcp.flipswitch.io/mcp"
}
}
}Add to ~/.codex/config.toml:
[mcp_servers.flipswitch]
url = "https://mcp.flipswitch.io/mcp"Consult your tool's documentation for how to add an HTTP MCP server, then point it at https://mcp.flipswitch.io/mcp.
Run /flipswitch-setup to verify the MCP server is accessible. The skill will test connectivity and guide you through SDK setup.
The Flipswitch MCP server provides these tools:
authenticate-- Device-flow auth with Flipswitchlist_organizations-- List your organizationslist_projects-- List projects in an orglist_environments-- List environments in a projectget_sdk_api_key-- Get the SDK API key for an environmentget_sdk_setup_snippet-- Get install/init/eval code for a languagelist_flags-- List all flags in a projectcreate_flag-- Create a new feature flagtoggle_flag-- Enable or disable a flag in an environmentflag_overview-- Status table of all flags across environments