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

knyazevai-mcp-catalog

v0.1.0

Published

MCP server for searching and discovering 24,500+ MCP servers and AI agents. Semantic search, trust scores, vulnerability tracking.

Readme

KnyazevAI MCP Catalog

MCP server that connects your AI assistant to the KnyazevAI search engine — the largest unified index of MCP servers and AI agents (24,500+ entries across 8 registries).

Your assistant gets tools to search, browse, filter, and inspect MCP servers. It returns structured data (JSON with names, descriptions, trust scores, install commands, GitHub stars, licenses, vulnerabilities) — the assistant then presents results however it wants.

Quick Start

npx -y knyazevai-mcp-catalog

Configure in Claude Desktop

{
  "mcpServers": {
    "mcp-catalog": {
      "command": "npx",
      "args": ["-y", "knyazevai-mcp-catalog"]
    }
  }
}

Cursor.cursor/mcp.json:

{
  "mcpServers": {
    "mcp-catalog": {
      "command": "npx",
      "args": ["-y", "knyazevai-mcp-catalog"]
    }
  }
}

Windsurf~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "mcp-catalog": {
      "command": "npx",
      "args": ["-y", "knyazevai-mcp-catalog"]
    }
  }
}

VS Code.vscode/mcp.json:

{
  "servers": {
    "mcp-catalog": {
      "command": "npx",
      "args": ["-y", "knyazevai-mcp-catalog"]
    }
  }
}

Tools

| Tool | What it does | Returns | |------|-------------|---------| | search_servers | Semantic search by task description | Ranked list of servers with scores, stars, install commands | | list_servers | Browse with filters (category, sort) | Paginated server list | | get_server | Get full details by server UUID | Tools list, trust breakdown, framework compat, packages | | discover | Task-based search across MCP + A2A agents | Ranked results with similarity scores | | get_server_vulnerabilities | Check CVE/GHSA for a server | Vulnerability list with severity and affected packages | | get_catalog_stats | Catalog overview | Total counts by registry, category breakdown |

What you get back

Every search result includes:

  • Title & description — what the server does
  • Trust score (0-100) — composite of source credibility, popularity, freshness, security
  • GitHub stars — community adoption signal
  • Install command — ready to paste into your config
  • Transport type — stdio, SSE, or streamable-http
  • License — MIT, Apache-2.0, etc.
  • Pricing — free/paid/freemium
  • Vulnerability count — known CVEs in dependencies

Server details (get_server) additionally include:

  • Full list of MCP tools the server exposes
  • Trust score breakdown (6 dimensions)
  • Framework compatibility (Claude Desktop, Cursor, Windsurf, etc.)
  • npm/PyPI/Docker package info
  • README summary

How it works

This package is a thin MCP server that forwards requests to the knyazevai.work REST API. All indexing, ranking, and scoring happens on the backend. This client just calls the API and returns JSON results as MCP tool responses.

No API key required. No data collection. No internal logic.

REST API

You can also use the API directly without MCP:

# Search
curl "https://knyazevai.work/api/v1/servers/search?q=database&limit=5"

# Browse by trust score
curl "https://knyazevai.work/api/v1/servers?sort_by=trust&limit=10"

# Server details
curl "https://knyazevai.work/api/v1/servers/{uuid}"

# Vulnerabilities
curl "https://knyazevai.work/api/v1/servers/{uuid}/vulnerabilities"

# Stats
curl "https://knyazevai.work/api/v1/stats"

Full API docs: knyazevai.work/llms-full.txt

License

MIT