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

@deriv-com/fe-mcp-servers

v0.0.15

Published

Collection of Front-End Model Context Protocol (MCP) servers for reusability and standardization

Readme

FE MCP Servers

A collection of Front-End Model Context Protocol (MCP) servers for reusability and standardization.

🏗️ Project Structure

Source Structure (Development)

mcps/
├── shift-ai/                  # Individual MCP server
│   ├── src/
│   │   ├── mcp-server.js     # Main server implementation
│   │   ├── mcp.js            # Core functionality
│   │   └── test-mcp.js       # Test suite
│   └── README.md             # Server documentation
├── github-mcp/               # GitHub integration server (planned)
├── slack-mcp/                # Slack automation server (planned)
├── database-mcp/             # Database management server (planned)
├── scripts/                  # Build and test scripts
│   ├── build.js             # Package builder
│   └── test-all.js          # Test runner
├── package.json             # MCP package configuration
└── README.md                # This file

🚀 Installation & Usage

Install the Package

# Install globally
npm install -g @deriv-com/fe-mcp-servers

CLI Commands

After installation, use the fe-mcp CLI to manage MCP servers:

# List all available MCP servers
fe-mcp list

# Interactive config generator - creates file & opens it for copy-paste
fe-mcp code

# Show detailed info about a specific server
fe-mcp info shift-ai

# Output MCP client configuration JSON
fe-mcp config shift-ai

# Show help
fe-mcp help

# Show version
fe-mcp --version

Quick Setup (Recommended)

The easiest way to get your MCP config:

fe-mcp code

This will:

  1. Show you a list of available MCP servers
  2. Ask you to select one
  3. Generate the configuration JSON with the correct path
  4. Save it to a file and auto-open it for easy copy-paste

MCP Configuration Template

{
  "mcpServers": {
    "server-name": {
      "command": "node",
      "args": ["<PATH_FROM_FE-MCP>"]
    }
  }
}

Example Configuration

{
  "mcpServers": {
    "shift-ai": {
      "command": "node",
      "args": ["/Users/user/.nvm/versions/node/v20.17.0/lib/node_modules/@deriv-com/fe-mcp-servers/dist/shift-ai/mcp-server.js"]
    }
  }
}

🛠️ Development

Building the Package

The build process bundles all dependencies into standalone executables:

cd mcps
npm run build

This creates bundled files in dist/ with all dependencies included.

Running Tests

npm run test

Adding New MCP Servers

  1. Create a new directory in mcps/
  2. Add the required source structure:
    your-server/
    ├── src/
    │   ├── mcp-server.js     # Main server implementation (entry point)
    │   └── mcp.js           # Core functionality
    └── README.md            # Server documentation
  3. Implement your MCP server logic in the src/ files
  4. The build process will automatically bundle everything into dist/your-server/mcp-server.js
  5. Users will reference the bundled file (not the source) in their MCP configuration

Requirements for New Servers

Each MCP server must:

  • Have src/mcp-server.js as the main entry point (source file)
  • Follow the MCP protocol specification
  • Include comprehensive documentation in README.md
  • The build process will bundle everything into a single executable dist/server-name/mcp-server.js file

🏗️ Architecture

Build Process

  • Input: Source files in src/ directories
  • Process: esbuild bundles all dependencies
  • Output: Single executable files in dist/ directories
  • Distribution: npm package contains only the dist/ directory

Dependency Management

  • All dependencies are bundled into the final executable
  • No external dependency resolution required at runtime
  • Standalone files that work in any Node.js environment