@featureflip/mcp

MCPCommunity
v0.1.4UnknownApache-2.0Aktualisiert vor 1 TnpmGitHub

MCP server for managing Featureflip feature flags from AI agents and editors

Läuft in
ClaudeCursorCopilotGemini

Abgeleitet aus den Transporten, die dieser Eintrag deklariert (stdio). Ein Client, der hier nicht steht, ist damit nicht ausgeschlossen — Forge kann ihn nur nicht bestätigen.

Automatisch aus öffentlichen Quellen indexiert. Vom Entwickler auf Forge noch nicht verifiziert.Diesen Eintrag beanspruchen →
285Downloads/Wo.
vor 1 TLetzte Aktualisierung
Braucht 1 Zugangsdatum, bevor es läuft
  • FEATUREFLIP_TOKENAPI-Schlüsselerforderlich

    Featureflip API token. A personal token (ffp_) acts as you; a service token (ffs_) is a scoped machine identity for CI and agents.

Vom Autor in der offiziellen MCP-Registry angegeben. Forge does not store, broker, or ever see these values — the config below is scaffolded with placeholders you fill in locally.

Paket
AutorUnknown
LizenzApache-2.0
Version0.1.4
Quellenpm+mcp-registry
Trust-Status
B
60/100Gut
Im Forge-Index gelistet+10/10
Publisher-Identität verifiziert+0/20
Publisher: führe `forge publish` im Repo des Pakets aus, um die Inhaberschaft zu beanspruchen
Ed25519-Publish-Signatur+0/5
Wird automatisch ergänzt, wenn der Publisher `forge publish` ausführt
Domain-Verifizierung+0/5
Publisher: hinterlege /.well-known/forge.json auf der Paket-Homepage mit { "publisher": "<github-login>" }
npm Trusted Publishing (Sigstore)+0/5
Veröffentliche aus GitHub Actions mit --provenance, damit die Attestation dieses Paket an dieses Repo bindet
npm-Maintainer-Übereinstimmung+0/5
Wird erreicht, sobald deine Identität oben verifiziert ist und dieser Login npm-Maintainer dieses Pakets ist
CVE-Scan · sauber+30/30
Statische Analyse · sauber+20/20
Füge das in Claude Code, Cursor oder einen beliebigen KI-Assistenten ein, um alle Lücken zu schließen
StatusVon der Community indexiert
PublisherNicht verifiziert
SignaturNicht signiert
Domain
Herkunft
Abhängigkeiten✓ 3 aufgelöst · keine verwundbar
Tool-Oberfläche19 Tools · 1 privilegiert
Sicherheits-Scan✓ Sauberv0.1.4 · heuteWie gut funktioniert dieser Scan?
EvaluierungenKeine
Indexiert29. Aug. 2026

Die Verifizierung bestätigt die Identität des Publishers (die Inhaberschaft am Repo), nicht die Sicherheit des Codes. Der Sicherheits-Scan deckt bekannte CVEs und verdächtige Installationsskripte ab.

Tools

19 Tools · 1 privilegiert
Statisch aus dem veröffentlichten Paket extrahiertv0.1.4 · 11h ago

Aus dem Quellcode gelesen, den npm tatsächlich ausliefert, zum Zeitpunkt des Scans. Das Paket wurde nie ausgeführt. Tools, die zur Laufzeit dynamisch registriert werden oder in gebündeltem beziehungsweise minifiziertem Code stecken, können übersehen werden — das hier ist also eine Untergrenze der Tool-Oberfläche, keine vollständige Erhebung.

list_projectsList projects in the Featureflip organization. Paginated: pass cursor from next_cursor to continue.

List projects in the Featureflip organization. Paginated: pass cursor from next_cursor to continue.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

list_environmentsList the environments of a project (e.g. development, staging, production).

List the environments of a project (e.g. development, staging, production).

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

list_segmentsList reusable user segments in a project. Segments are referenced from targeting rules via userSegmentId.

List reusable user segments in a project. Segments are referenced from targeting rules via userSegmentId.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

get_segmentGet one user segment (its conditions, id, and metadata) by key or id.

Get one user segment (its conditions, id, and metadata) by key or id.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

list_flagsList feature flags in a project. Filter with search (key/name substring), tag, type, archived. Paginated via cursor.

List feature flags in a project. Filter with search (key/name substring), tag, type, archived. Paginated via cursor.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

get_flagGet one feature flag with its variations and metadata. Address by flag key or id.

Get one feature flag with its variations and metadata. Address by flag key or id.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

create_flagCreate a feature flag. type is one of Boolean|String|Number|Json. Boolean flags get true/false variations automatically; for other types pass initialVariations. The flag is created in every environment of the project (disabled).

Create a feature flag. type is one of Boolean|String|Number|Json. Boolean flags get true/false variations automatically; for other types pass initialVariations. The flag is created in every environment of the project (disabled).

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

update_flagUpdate flag name/description/tags/clientSideVisible. Key and type are immutable. Use toggle_flag / update_targeting for behavior changes.

Update flag name/description/tags/clientSideVisible. Key and type are immutable. Use toggle_flag / update_targeting for behavior changes.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

delete_flagprivilegiertPERMANENTLY delete a flag across all environments. Fails with FLAG_HAS_DEPENDENTS if other flags use it as a prerequisite. Prefer archive_flag unless the flag must be fully removed.

PERMANENTLY delete a flag across all environments. Fails with FLAG_HAS_DEPENDENTS if other flags use it as a prerequisite. Prefer archive_flag unless the flag must be fully removed.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

archive_flagArchive a flag (soft-hide, evaluation stops serving it). Reversible with restore_flag.

Archive a flag (soft-hide, evaluation stops serving it). Reversible with restore_flag.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

restore_flagRestore a previously archived flag.

Restore a previously archived flag.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

toggle_flagEnable or disable a flag in ONE environment. Affects live evaluation immediately — double-check the environment.

Enable or disable a flag in ONE environment. Affects live evaluation immediately — double-check the environment.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

update_flag_environment_configUpdate a flag's per-environment serving config: defaultVariationId (served on fallthrough, required), strategy (SingleVariation | PercentageRollout | TargetedRollout — only SingleVariation is currently supported at the environment level), and prerequisites. Percentage rollouts are configured on tar…

Update a flag's per-environment serving config: defaultVariationId (served on fallthrough, required), strategy (SingleVariation | PercentageRollout | TargetedRollout — only SingleVariation is currently supported at the environment level), and prerequisites. Percentage rollouts are configured on tar…

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

flag_statusCompact cross-environment view of one flag: enabled state, strategy, default variation, and prerequisites per environment.

Compact cross-environment view of one flag: enabled state, strategy, default variation, and prerequisites per environment.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

get_targetingGet a flag's current targeting configuration (enabled flag + ordered rules) in one environment.

Get a flag's current targeting configuration (enabled flag + ordered rules) in one environment.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

update_targetingREPLACE all targeting rules of a flag in one environment (full PUT — rules not included are removed). Rules are evaluated in order. Get the current rules first with get_targeting.

REPLACE all targeting rules of a flag in one environment (full PUT — rules not included are removed). Rules are evaluated in order. Get the current rules first with get_targeting.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

manage_variationManage a flag's variations. action=add requires key + value; action=update/remove require variationId (get ids via get_flag). Removing a variation fails with VARIATION_HAS_DEPENDENTS if other flags depend on it.

Manage a flag's variations. action=add requires key + value; action=update/remove require variationId (get ids via get_flag). Removing a variation fails with VARIATION_HAS_DEPENDENTS if other flags depend on it.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

find_stale_flagsKeine Beschreibung veröffentlicht

Dieses Tool hat keine Beschreibung veröffentlicht. Forge erfindet keine.

wrap_featureCreate a Boolean feature flag and get back the SDK code snippet to guard the new code path with it. Returns the snippet only — apply the edit yourself. The flag starts DISABLED in every environment; enable it with toggle_flag when ready.

Create a Boolean feature flag and get back the SDK code snippet to guard the new code path with it. Returns the snippet only — apply the edit yourself. The flag starts DISABLED in every environment; enable it with toggle_flag when ready.

Für dieses Tool wurde kein Eingabeschema veröffentlicht.

18 von 19 Tools haben eine Beschreibung veröffentlicht.

Tool-Namen und -Beschreibungen stammen vom Publisher und werden wortgetreu als inerter Text angezeigt. Es sind die Zeichenketten, die ein MCP-Client an ein Modell übergibt, deshalb prüft Forge sie auf Prompt-Injection-Muster — jeder Befund erscheint oben beim Sicherheits-Scan. „Privilegiert“ ist ein Schlagwort-Treffer im Tool-Namen, keine Prüfung dessen, was das Tool tut: ein harmlos klingender Name kann trotzdem alles tun.

Über

MCP server for managing Featureflip feature flags from AI agents and editors

Schlagwörter
mcp
Alternativen
Tool-Oberflächen werden verglichen…

Abhängigkeitsbaum

Was ein Forge-Scan am 2026-08-29 aus den npm-Metadaten aufgelöst hat — beobachtete Auflösung, keine Angabe des Herausgebers.

3 Pakete aufgelöst · 2 direkt · keines mit Sicherheitshinweisen Die Auflösung endet bei Tiefe 4 und 60 Paketen.