npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

rc-ffs-mcp

v1.0.0

Published

MCP server for RingCentral Feature Flag Service (FFS) - provides tools to search, create, and manage feature flags

Readme

RC FFS MCP Server

npm version

A Model Context Protocol (MCP) server for interacting with RingCentral Feature Flag Service (FFS).

Features

  • search_flag: Search for feature flags by name (exact or fuzzy match)
  • list_flags: List all feature flags with filtering options
  • create_flag: Create new feature flags
  • update_flag: Update flag properties (description, status, public)
  • update_rules: Update or replace all rules for a flag
  • add_rule: Add a single rule to an existing flag

Installation

Install from npm

npm install -g rc-ffs-mcp

Or use directly with npx:

npx rc-ffs-mcp

Install from source

git clone https://github.com/ringcentral/rc-ffs-mcp.git
cd rc-ffs-mcp
npm install
npm run build

Cursor IDE Configuration

Add the following to your Cursor MCP configuration file (~/.cursor/mcp.json):

Using npm global install

{
  "mcpServers": {
    "rc_ffs_mcp": {
      "command": "rc-ffs-mcp",
      "env": {
        "FFS_BASE_URL": "http://your-ffs-server:8080"
      }
    }
  }
}

Using npx

{
  "mcpServers": {
    "rc_ffs_mcp": {
      "command": "npx",
      "args": ["-y", "rc-ffs-mcp"],
      "env": {
        "FFS_BASE_URL": "http://your-ffs-server:8080"
      }
    }
  }
}

Using local installation

{
  "mcpServers": {
    "rc_ffs_mcp": {
      "command": "node",
      "args": ["/path/to/rc-ffs-mcp/dist/index.js"],
      "env": {
        "FFS_BASE_URL": "http://your-ffs-server:8080"
      }
    }
  }
}

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | FFS_BASE_URL | Base URL of the FFS server | http://aws16-c01-ffs01.ffs.svc.c01.eks02.k8s.aws16.lab.nordigy.ru:8080 |

Available Tools

1. search_flag

Search for a feature flag by name.

Parameters:

  • name (required): The name/ID of the feature flag
  • exact (optional): If true, perform exact match. If false, perform fuzzy search (default: true)

Example:

{
  "name": "my_feature_flag",
  "exact": true
}

2. list_flags

List all feature flags with optional filtering.

Parameters:

  • limit (optional): Maximum number of flags to return (default: 100)
  • statusFilter (optional): Filter by status: "Active", "Inactive", "Archived", or "All" (default: "All")

Example:

{
  "limit": 50,
  "statusFilter": "Active"
}

3. create_flag

Create a new feature flag.

Parameters:

  • id (required): Unique ID/name of the flag
  • dataType (required): One of "Boolean", "Integer", "String", "JSON", "ListString", "ListInteger"
  • description (optional): Description of the flag
  • status (optional): Initial status: "Active", "Inactive", "Archived" (default: "Inactive")
  • public (optional): Whether the flag is public (default: true)

Example:

{
  "id": "my_new_flag",
  "description": "My new feature flag",
  "dataType": "Boolean",
  "status": "Inactive",
  "public": true
}

4. add_rule

Add a single rule to an existing feature flag.

Parameters:

  • flagId (required): ID of the feature flag
  • value (required): Value to return when rule matches
  • valueName (optional): Name for the value
  • valueDescription (optional): Description for the value
  • conditions (required): Array of conditions

Condition Properties:

  • dimension: One of "GlipUserId", "ExtensionId", "AccountId", "AppId", "BrandId", "EnvName", "EndpointId", "GlipCompanyId"
  • operator: One of "Equal", "NotEqual", "Contains", "StartsWith", "EndsWith", "IsOneOf", "NotOneOf", "LessThan", "GreaterThan", etc.
  • argumentDataType: "Integer", "String", or "ListString"
  • argument: Value to compare against
  • description (optional): Description of the condition

Example:

{
  "flagId": "my_flag",
  "value": "true",
  "valueName": "enabled",
  "conditions": [
    {
      "dimension": "AccountId",
      "operator": "Equal",
      "argumentDataType": "Integer",
      "argument": "12345",
      "description": "Enable for account 12345"
    }
  ]
}

5. update_rules

Replace all rules for a feature flag.

Parameters:

  • flagId (required): ID of the feature flag
  • rules (required): Array of rules

6. update_flag

Update flag properties.

Parameters:

  • flagId (required): ID of the feature flag
  • description (optional): New description
  • status (optional): New status
  • public (optional): New public visibility

Supported Dimensions

  • GlipUserId
  • ExtensionId
  • AccountId
  • AppId
  • BrandId
  • EnvName
  • EndpointId
  • GlipCompanyId

Supported Operators

  • Equal, NotEqual
  • Contains, StartsWith, EndsWith
  • NotStartsWith, NotEndsWith
  • IsOneOf, NotOneOf
  • LessThan, LessThanOrEqual
  • GreaterThan, GreaterThanOrEqual
  • SegmentMatch, NotSegmentMatch
  • Percent
  • SemVer comparisons (SemVerEqual, SemVerLessThan, etc.)

License

MIT