npm @featureflip/mcpstdioupdated 10d ago
MCP (Model Context Protocol) server for Featureflip ā manage feature flags from AI coding assistants (Claude Code, Cursor, Copilot, Cline) and autonomous agents.
What can you do with Featureflip?
@featureflip/mcp
MCP (Model Context Protocol) server for Featureflip ā manage feature flags from AI coding assistants (Claude Code, Cursor, Copilot, Cline) and autonomous agents.
Setup
- Create an API token in the Featureflip dashboard:
- Personal token (
ffp_...): Settings ā API Tokens ā acts as you, for interactive editor use. - Service token (
ffs_...): Organization Settings ā Service Tokens ā scoped machine identity for CI/agents.
- Personal token (
- Add the server to your MCP client:
Claude Code
claude mcp add featureflip -e FEATUREFLIP_TOKEN=ffp_your_token -- npx -y @featureflip/mcp
Cursor / Cline / generic JSON config
{
"mcpServers": {
"featureflip": {
"command": "npx",
"args": ["-y", "@featureflip/mcp"],
"env": { "FEATUREFLIP_TOKEN": "ffp_your_token" }
}
}
}
Configuration
| Env var | Required | Default | Purpose |
|---|---|---|---|
FEATUREFLIP_TOKEN |
yes | ā | ffp_/ffs_ API token |
FEATUREFLIP_API_URL |
no | https://api.featureflip.io |
API base URL |
FEATUREFLIP_ORG |
no | auto | Org slug (needed only for multi-org personal tokens) |
Tools
CRUD: list_projects, list_environments, list_flags, get_flag, create_flag, update_flag,
delete_flag, archive_flag, restore_flag, toggle_flag, update_flag_environment_config,
get_targeting, update_targeting, manage_variation, list_segments, get_segment
Workflows: flag_status (cross-environment view), find_stale_flags (cleanup candidates),
wrap_feature (create flag + get the SDK snippet for your language)
Full reference: https://featureflip.io/docs/integrations/mcp/
Notes
- Flag evaluation is not exposed over MCP ā use the language SDKs in application code.
- Every mutation is audit-logged and attributed to the token.
License
Apache-2.0
Install
Add Featureflip to your client. Pick the one you use.
claude mcp add mcp -- npx -y @featureflip/mcpcodex mcp add mcp -- npx -y @featureflip/mcpamp mcp add mcp -- npx -y @featureflip/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@featureflip/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@featureflip/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp","command":"npx","args":["-y","@featureflip/mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@featureflip/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@featureflip/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@featureflip/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@featureflip/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@featureflip/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @featureflip/mcpRun `goose configure`, choose **Add Extension ā Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance19/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 3 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint ā no local install
Version history
| Versions | Published |
|---|---|
| 0.1.4Latest | Aug 28, 2026 |
| 0.1.3 | Aug 28, 2026 |