🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

legitshow-mcp

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

legitshow-mcp

MCP server for Legit.Show — let Claude Desktop / Cursor / Cline / Windsurf search a directory of launched software (web apps, SaaS, AI tools, MCP servers) by measured production-readiness through the Model Context Protocol.

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

Legit.Show MCP server

Model Context Protocol server for Legit.Show. Plug it into Claude Desktop, Cursor, Cline, Windsurf, or any MCP host, and your model can search a directory of launched software by measured production-readiness — not GitHub stars — without ever leaving the chat.

npm MIT license node 20+

// any MCP host config (Claude Desktop · Cursor · Cline · Windsurf · …)
{
  "mcpServers": {
    "legitshow": {
      "command": "npx",
      "args": ["-y", "legitshow-mcp"]
    }
  }
}

That's the entire install. No API key. The server is a stdio shim over the public https://legit.show/api/search REST surface — one source of truth for the data.

Why this is different

Most "find me a tool" flows rank by GitHub stars or popularity. Legit.Show carries a deterministic 7-Frame production-readiness benchmark (Performance, Accessibility, Security, Privacy, Reliability, Standards, Discoverability) measured from the public surface — real Lighthouse, HTTP headers, live probes, no LLM in the scoring path. So your agent can filter by whether something is actually production-ready:

"find production-ready, open-source MCP servers with Security ≥ 80"

Tools exposed

ToolWhat it does
search_services({ query?, category?, min_scores?, is_open_source?, limit? })Search launched software by name or filter. Returns each match with its per-frame scores and its legit.show/s/<slug> page.
fetch_docs()Pull the canonical Legit.Show docs (llms.txt) — what Legit.Show is, the 7-Frame benchmark, and how to cite a service.

Boundary: per-frame scores + summary + the page only. There is no combined overall total in the public data (it's a licensed product), so the model won't invent one.

Host wiring snippets

Claude Desktop — claude_desktop_config.json

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

Cursor — .cursor/mcp.json

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

Cline / Continue / Windsurf

Same three-line npx -y legitshow-mcp invocation in the host's MCP config.

No MCP host? Plain REST

GET https://legit.show/api/search?q=<name>

Filters: category, min_scores (e.g. {"security":80}), is_open_source, limit (≤50). GET or POST. No key.

Self-hosting / dev overrides

EnvDefaultUsed by
LEGIT_SEARCH_APIhttps://legit.show/api/searchsearch_services
LEGIT_DOCS_BASEhttps://legit.showfetch_docs (llms.txt)
  • Legit.Show — the directory: every launched service, tested
  • Methodology — how the 7-Frame benchmark is measured
  • llms.txt — the canonical machine-readable doc

MIT · operated by Madeflo, Inc.

Keywords

mcp

FAQs

Package last updated on 24 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts