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

@redhat-cloud-services/hcc-feo-mcp

v0.0.4

Published

HCC Frontend Operator MCP package for dynamic schema-driven FEO configuration management

Readme

HCC Frontend Operator MCP Server

A Model Context Protocol (MCP) server providing dynamic, schema-driven tools for Frontend Operator (FEO) configuration management. This server fetches the latest schema and generates templates dynamically, ensuring configurations stay up-to-date with the official specification.

Features

  • Dynamic Schema-Driven Generation: Templates generated from live FEO schema, not hardcoded
  • Live Schema Management: Always fetches the latest FEO schema from the official repository
  • Intelligent Template Generation: Schema-aware templates with bundle-specific recommendations
  • Real-Time Validation: Validate configurations against the current schema
  • Field Recommendations: Smart suggestions based on schema structure and bundle context
  • Best Practices: Current FEO best practices and patterns
  • Zero Maintenance: No need to update templates when the schema evolves

Schema-Driven Approach

Unlike hardcoded templates, this MCP server:

  • Fetches the live schema from the official FEO repository
  • Generates templates dynamically based on current schema structure
  • Provides intelligent recommendations using schema defaults and required fields
  • Eliminates maintenance overhead - templates stay current automatically

Available Tools

getFEOSchema

Get the latest Frontend Operator CRD schema for validation and reference.

getFEOMigrationTemplate

Generate customized migration templates using dynamic schema-based generation:

  • Module configuration migration
  • Navigation bundle segments
  • Service tiles conversion
  • Search entries setup
  • Full migration templates

getFEOYamlSetupTemplate

Generate complete frontend.yaml templates for new applications with:

  • Proper FEO configuration
  • Module routing setup
  • Navigation bundle segments
  • Service tiles configuration
  • Search entries

getFEOFieldRecommendations

Get schema-based field recommendations for specific configuration paths:

  • Required fields based on schema
  • Default values from schema definitions
  • Bundle-specific recommendations (positioning, icons, product names)
  • Schema examples for reference

getFEOExamples

Get specific FEO configuration examples:

  • Navigation patterns
  • Service tiles examples
  • Multi-bundle configurations
  • Nested navigation structures

validateFEOConfig

Validate frontend.yaml configuration against the FEO schema with detailed error reporting.

getFEOBestPractices

Access current FEO best practices for positioning, naming, validation, and troubleshooting.

getFEONavigationPositioning

Get guidance on navigation positioning and bundle segment organization.

getFEOServiceTilesSections

Get available service tiles sections and groups for proper categorization.

Installation

npm install
npm run build

Usage with Claude

Add to your Claude Code MCP configuration:

{
  "mcpServers": {
    "hcc-feo-mcp": {
      "command": "node",
      "args": ["/path/to/hcc-feo-mcp/dist/index.js"]
    }
  }
}

Development

npm run dev  # Development mode with tsx
npm run build  # Production build

Related Resources