UDS Registry MCP Server

What This Server Does

This Model Context Protocol (MCP) server provides AI tools with access to the UDS (Unicorn Delivery Service) Registry. It enables AI assistants to:

catalog
Browse the public catalog of UDS organizations and packages
package
Get detailed information about specific UDS packages
sbom
Retrieve Software Bill of Materials (SBOM) for specific package versions
cves
Access CVE (Common Vulnerabilities and Exposures) information for package versions

Installation Instructions

Claude Desktop

Add this server to your Claude Desktop configuration:

{
  "mcpServers": {
    "uds-registry": {
      "command": "npx",
      "args": [
        "@modelcontextprotocol/server-fetch",
        "https://mcp-server-uds-registry.jeffrescignano.io/mcp"
      ]
    }
  }
}

Alternatively, for direct SSE connection:

{
  "mcpServers": {
    "uds-registry": {
      "command": "npx",
      "args": [
        "@modelcontextprotocol/server-sse",
        "https://mcp-server-uds-registry.jeffrescignano.io/sse"
      ]
    }
  }
}

Claude Code

Configure Claude Code to use this MCP server:

claude config mcp add uds-registry \
  --command "npx" \
  --args "@modelcontextprotocol/server-fetch" "https://mcp-server-uds-registry.jeffrescignano.io/mcp"

Or using SSE:

claude config mcp add uds-registry \
  --command "npx" \
  --args "@modelcontextprotocol/server-sse" "https://mcp-server-uds-registry.jeffrescignano.io/sse"

Other MCP-Compatible Tools

For other AI tools that support MCP, use one of these endpoints:

Usage

Once configured, you can ask your AI assistant to:


View on GitHub