Back to MCP Directory
Flipt
Model Context Protocol moderate risk

Flipt

The Flipt MCP server enables AI assistants to manage and evaluate feature flags within the Flipt platform, using a Model Context Protocol interface.

Connections & Capabilities

Connects To

GitHubDocker

Capabilities

readwrite

Quickstart

Install

npx -y @smithery/cli install @flipt-io/mcp-server-flipt --client claude

Exposed MCP Tools (10)

safe
listNamespaces

Lists all namespaces within Flipt.

Read-only operation.

moderate
createNamespace

Creates a new namespace in Flipt.

Creates a new resource, but does not modify existing ones.

high
updateNamespace

Updates an existing namespace in Flipt.

Modifies existing resources, potentially impacting application behavior.

critical
deleteNamespace

Deletes a namespace from Flipt.

Deletes a resource, which can have significant consequences.

safe
listFlags

Lists all feature flags within a given namespace.

Read-only operation.

moderate
createFlag

Creates a new feature flag within a given namespace.

Creates a new resource, but does not modify existing ones.

high
updateFlag

Updates an existing feature flag.

Modifies existing resources, potentially impacting application behavior.

critical
deleteFlag

Deletes a feature flag.

Deletes a resource, which can have significant consequences.

safe
evaluateFlag

Evaluates a flag for a given entity.

Read-only operation.

high
toggleFlag

Toggles a flag on or off.

Modifies the state of a feature flag, directly impacting application behavior.

Safety Assessment

This server allows AI assistants to manage feature flags, which can be risky if not handled carefully. The use of an API key provides a basic level of security, but the potential for misconfiguration and the lack of rate limiting require careful monitoring and access control.

  • Requires authentication via API key.
  • Operations are limited to the Flipt feature flag domain.
  • No direct access to the underlying operating system or file system.
  • Clear separation of concerns through dedicated tools.
  • Allows modification of feature flag configurations, potentially impacting application behavior.
  • Improperly configured flags could lead to unintended consequences in production.
  • Exposure of the Flipt API URL and API Key can lead to unauthorized access.
  • No built-in rate limiting or usage controls.