1. Conduid
  2. AI
  3. backstage-plugin-catalog-backend-module
MCP server · AI

backstage-plugin-catalog-backend-module

Backstage catalog backend module for MCP (Model Context Protocol) entities

Unclaimed ai
39Low

Scored 3 months ago · breakdown

About backstage-plugin-catalog-backend-module

backstage-plugin-catalog-backend-module is an MCP server published by git+automationpi in the AI category: backstage catalog backend module for MCP (Model Context Protocol) entities. It has been installed 0 times through Conduid.

Install

Install
npx @mexl/backstage-plugin-catalog-backend-module-mcp
Claude Code
claude mcp add backstage-plugin-catalog-backend-module-mcp -- npx -y @mexl/backstage-plugin-catalog-backend-module-mcp
npx
npx -y @mexl/backstage-plugin-catalog-backend-module-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about backstage-plugin-catalog-backend-module

Powered by Claude · Grounded in docs

I know everything about backstage-plugin-catalog-backend-module. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

NPM Version License


Features

  • Comprehensive support for MCP (Model Context Protocol) entities as a native kind in Backstage
  • Configuration validation for MCP entities
  • Automatic modeling of relationships (dependencies, ownership, API provision)
  • Multi-transport: stdio, SSE, WebSocket, HTTP
  • Multiple runtimes supported: Node.js, Python, Go, C#, Rust, Java
  • Automatic search integration in Backstage
  • Real-world, production-ready example YAMLs included

New entity type in backstage

Getting Started

1. Install the Backend Plugin

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

2. Register the MCP Backend Module

In your packages/backend/src/index.ts:

import { createBackend } from '@backstage/backend-defaults';

const backend = createBackend();

backend.add(import('@backstage/plugin-app-backend'));
backend.add(import('@backstage/plugin-proxy-backend'));
backend.add(import('@backstage/plugin-scaffolder-backend'));
backend.add(import('@backstage/plugin-techdocs-backend'));

// Add MCP catalog module
backend.add(import('@mexl/backstage-plugin-catalog-backend-module-mcp'));

backend.start();

Note: Requires Backstage version 1.0.0 or higher.

3. Configure MCP Entity Support

In app-config.yaml, add MCP to your allowed kinds and catalog locations:

catalog:
  rules:
    - allow: [Component, System, API, Resource, Location, MCP]  # Add MCP here
  locations:
    - type: file
      target: ../../catalog-info/mcp-entities.yaml
      rules:
        - allow: [MCP]

Note: This backend plugin provides the MCP entity support and catalog integration. To visualize MCP entities with rich UI components, you'll also need to install the frontend plugin.

Test it

Define Your First MCP Entity

Create catalog-info/mcp-entities.yaml:

apiVersion: backstage.io/v1alpha1
kind: MCP
metadata:
  name: my-first-mcp
  description: "My first MCP server for file operations"
spec:
  transport: stdio
  runtime: node
  type: file-processor
  lifecycle: experimental
  owner: my-team
  capabilities:
    tools: ["read_file", "write_file", "list_files"]
  configuration:
    command: "npx"
    args: ["-y", "@my-org/file-mcp-server"]
    timeout: 30000

Install Frontend Plugin for Visualization

Important: While this backend plugin enables MCP entities in your catalog, you'll need the frontend plugin to visualize them with enhanced UI cards:

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

See the frontend plugin documentation for complete setup instructions.

Restart Backstage

yarn dev

Verify Installation

  • Visit your Backstage instance, open Catalog
  • Filter by Kind = MCP
  • You should see your MCP entity listed
  • If you've installed the frontend plugin, clicking on an MCP entity will show rich UI cards with capabilities, configuration, and interactive features

Example: MCP Entity Schema

MCP entities use this schema:

apiVersion: backstage.io/v1alpha1
kind: MCP
metadata:
  name: my-mcp-server
  description: "Description of your MCP server"
spec:
  transport: stdio | sse | websocket | http
  runtime: node | python | go | csharp | rust | java
  type: data-connector | tool-provider | workflow-automation | api-integration | file-processor
  lifecycle: experimental | production | deprecated
  owner: team-name
  system: system-name
  capabilities:
    tools: ["tool1", "tool2"]
    resources: ["resource1", "resource2"]
    prompts: ["prompt1", "prompt2"]
  configuration:
    command: "npx"
    args: ["-y", "@my/mcp-server"]
    url: "https://my-server.com/mcp"
    timeout: 30000
    env:
      - name: "API_KEY"
        valueFrom: "secret"
  authentication:
    type: oauth2 | api-key | bearer | basic | none
    provider: "oauth-provider"
    config:
      scopes: ["read", "write"]
  dependsOn: ["api:weather-api", "database"]
  consumedBy: ["component:my-app"]

Example: Example MCP Entity YAMLs

# Basic stdio MCP Server
apiVersion: backstage.io/v1alpha1
kind: MCP
metadata:
  name: simple-file-mcp
  description: "Simple file operations MCP server"
spec:
  transport: stdio
  runtime: node
  type: file-processor
  lifecycle: production
  owner: platform-team
  capabilities:
    tools: ["read_file", "write_file", "list_files"]
  configuration:
    command: "npx"
    args: ["-y", "@my-org/file-mcp"]
    timeout: 30000
# Remote HTTP MCP Server
apiVersion: backstage.io/v1alpha1
kind: MCP
metadata:
  name: api-integration-mcp
  description: "API integration MCP server"
spec:
  transport: http
  runtime: python
  type: api-integration
  lifecycle: production
  owner: integration-team
  capabilities:
    tools: ["call_api", "transform_data"]
    resources: ["api_schemas", "response_cache"]
  configuration:
    url: "https://api-mcp.company.com/v1"
    timeout: 45000
  authentication:
    type: oauth2
    provider: "company-sso"
  dependsOn: ["api:external-service"]

See the examples/ directory for more sample configurations.


Complete Setup

For a complete MCP implementation in Backstage, you'll need:

  1. This backend plugin - Provides MCP entity support and catalog integration
  2. Frontend plugin - Adds rich UI cards and visualization for MCP entities

Both plugins work together to provide a comprehensive MCP experience in your Backstage instance.

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 License 2.0

Related Links

README mirrored from the source repository 3 months ago. The original is authoritative.

Questions

About backstage-plugin-catalog-backend-module

How do I install backstage-plugin-catalog-backend-module?

Run npx @mexl/backstage-plugin-catalog-backend-module-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is backstage-plugin-catalog-backend-module safe to use with an AI agent?

Its trust score is 39 out of 100 (low). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is backstage-plugin-catalog-backend-module still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.