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

@mexl/backstage-plugin-mcp-frontend

v1.1.14

Published

Enhanced Backstage frontend plugin for MCP (Model Context Protocol) entity visualization with JSON/Text toggle, syntax highlighting, and VSCode integration

Readme

@mexl/backstage-plugin-mcp-frontend

🎨 Backstage MCP Frontend plugin for MCP (Model Context Protocol) entities in Backstage - enabling organizations to centrally manage, discover and share MCP servers across teams. Streamline MCP adoption, improve collaboration, and maintain governance through a unified interface for your organization's MCP infrastructure.

NPM Version License

⚠️ Prerequisites: This plugin requires the backend plugin @mexl/backstage-plugin-catalog-backend-module-mcp to be installed first.

✨ Features

🚀 Quick Setup

Prerequisites

  1. Install Backend Plugin First:

    yarn --cwd packages/backend add @mexl/backstage-plugin-catalog-backend-module-mcp

    See backend setup guide for complete instructions.

Step 1: Install Frontend Plugin

# Install the frontend plugin
yarn --cwd packages/app add @mexl/backstage-plugin-mcp-frontend

Step 2: Add to EntityPage

In packages/app/src/components/catalog/EntityPage.tsx:

// Add this import
import { MCPEntityPage } from '@mexl/backstage-plugin-mcp-frontend';

// Add to your existing entityPage switch (isKind should already be imported)
export const entityPage = (
  <EntitySwitch>
    <EntitySwitch.Case if={isKind('component')} children={componentPage} />
    <EntitySwitch.Case if={isKind('api')} children={apiPage} />
    {/* Add this line */}
    <EntitySwitch.Case if={isKind('MCP')} children={<MCPEntityPage />} />
    
    <EntitySwitch.Case>{defaultEntityPage}</EntitySwitch.Case>
  </EntitySwitch>
);

Step 3: Restart Backstage

yarn start

Setup Complete MCP entities now display with enhanced UI cards

🎯 Usage

Complete Setup Example

🌟 New! Try our complete setup example that includes a full organizational catalog with systems, components, users, groups, and MCP entities working together:

# Import the complete example
cp examples/complete-setup/catalog-info.yaml catalog-info/complete-example.yaml

This demonstrates:

  • Real-world integration patterns with existing Backstage entities
  • System relationships showing how MCP servers fit into your architecture
  • Enhanced UI features with rich descriptions and interactive components
  • Multiple transport types (stdio, HTTP, SSE) and configurations

Adding Individual MCP Entities

To add specific MCP entities to your catalog:

  1. Choose from our example configurations
  2. Copy to your catalog directory
  3. Import through Backstage UI or configuration

Using Individual Components

For custom entity pages, import components individually:

import {
  MCPOverviewCard,
  MCPCapabilitiesCard,
  MCPConfigurationCard,
  MCPClientConfigCard,
} from '@mexl/backstage-plugin-mcp-frontend';

// Use in your custom layouts
<Grid container spacing={3}>
  <Grid item md={6}>
    <MCPOverviewCard />
  </Grid>
  <Grid item md={6}>
    <MCPCapabilitiesCard />
  </Grid>
</Grid>

🤝 Contributing

Contributions welcome! Please:

  1. Fork the repository
  2. Create a feature branch
  3. Add tests for new functionality
  4. Ensure all tests pass
  5. Submit a pull request

📄 License

Apache-2.0

🔗 Related Packages


Made with ❤️ for the Backstage community