A Model Context Protocol (MCP) server for Flipt, allowing AI assistants to interact with feature flags. - List, create, update, and delete namespaces, flags, segments, rules, and more - Evaluate flags for specific entities - Toggle flags on/off - Manage constraints, variants, distributions, and rollouts Once the server is running, it will: 1. Set up a STDIO transport for MCP communication 2. Regis
Add this skill
npx mdskills install flipt-io/mcp-server-fliptWell-documented MCP server for feature flag management with multiple installation options
1# Flipt MCP Server23[](https://www.npmjs.com/package/@flipt-io/mcp-server-flipt)4[](https://smithery.ai/install/@flipt-io/mcp-server-flipt)5[](https://mseep.ai/app/flipt-io-mcp-server-flipt)67A [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server for [Flipt](https://flipt.io), allowing AI assistants to interact with feature flags.89<img width="2060" alt="mcp" src="https://github.com/user-attachments/assets/cc32a6dd-5368-43c1-897a-a0ccfeeacaf0" />1011## Features1213- List, create, update, and delete namespaces, flags, segments, rules, and more14- Evaluate flags for specific entities15- Toggle flags on/off16- Manage constraints, variants, distributions, and rollouts1718## Usage1920Once the server is running, it will:21221. Set up a STDIO transport for MCP communication232. Register tools and prompts for interacting with Flipt2425The server is designed to be used with AI assistants that support the Model Context Protocol.2627### Installing via Smithery2829To install Flipt MCP Server for Claude Desktop automatically via [Smithery](https://smithery.ai/install/@flipt-io/mcp-server-flipt):3031```bash32npx -y @smithery/cli install @flipt-io/mcp-server-flipt --client claude33```3435### Node3637You can install the package globally and run it:3839```bash40npm install -g @flipt-io/mcp-server-flipt && mcp-server-flipt41```4243Or run it directly with npx:4445```bash46npx -y @flipt-io/mcp-server-flipt47```4849### Docker5051You can also run the server in a Docker container:5253```bash54docker run -d --name mcp-server-flipt ghcr.io/flipt-io/mcp-server-flipt:latest55```5657## Configuration5859The server can be configured using environment variables:6061- `FLIPT_API_URL`: The URL of the Flipt API (default: <http://localhost:8080>)62- `FLIPT_API_KEY`: The API key to use for the Flipt API (optional)6364You can set these in a `.env` file in the directory where you run the server.6566## Development6768```bash69# Install dependencies70npm install7172# Run in development mode73npm run dev7475# Build the project76npm run build7778# Start the server79npm start8081# Format code82npm run fmt8384# Lint code85npm run lint86```8788## License8990Apache 2.091
Full transparency — inspect the skill content before installing.