Nerq MCP Server
Provides trust scores, comparisons, and search for software entities, AI tools, packages, and MCP servers using Nerq's Trust Score system.
README
<img src="assets/nerq-logo-400.png" alt="Nerq" width="120" align="right" />
Nerq MCP Server
Official first-party MCP server for the Nerq catalog (nerq.ai).
Nerq indexes 6.8M+ software entities, AI tools, packages, and 41,368 MCP servers, each with an independent Trust Score. This Model Context Protocol server exposes Nerq's trust judgments as agent tools, so an agent can check trust before it acts.
- Hosted endpoint (Streamable HTTP):
https://mcp.nerq.ai/mcp - Server card:
https://mcp.nerq.ai/.well-known/mcp/server-card.json - Registry namespace:
ai.nerq/mcp(DNS-verified onnerq.ai) - Free, no authentication.
This is Nerq's own server for its own catalog — first-party, not a third-party wrapper. The catalog and the trust judgments are hosted; this repository is a thin client bridge and a manifest. It holds no data, no database access, and no business logic.
Install
Or point any Streamable-HTTP MCP client at https://mcp.nerq.ai/mcp (see Using it below).
Tools
| Tool | Signature | Returns |
|---|---|---|
is_safe |
is_safe(entity) |
Trust Score, grade, verdict (safe / caution / elevated risk / not yet scored), source_url. Abstains if the entity can't be confidently resolved. |
compare |
compare(a, b) |
Head-to-head by Nerq Trust Score, with a winner — or status: "cannot_compare" if either side can't be confidently resolved. Nerq abstains rather than compare the wrong entity. |
search_assets |
search_assets(query, type?, limit?) |
Entities matching query, ranked by Trust Score. Optional type filter (npm, pypi, crates, mcp_server, …). |
find_mcp_servers |
find_mcp_servers(capability?, limit?) |
MCP servers matching a capability keyword, ranked by Trust Score, from Nerq's index of 41,368. |
Design guarantees
- Never fabricates. Resolution is exact — no fuzzy matching. On a miss the tools abstain
(
found: false/cannot_compare) rather than return a wrong entity: an agent acting on a fabricated match is worse than no answer. - Never a numeric zero for the unscored. An entity with no score returns
"not yet scored", never0/100. - Provenance on every response. Every result carries a
source_urlback to the Nerq page it came from, so the judgment is citable.
Using it
Recommended — connect directly to the hosted server (Streamable HTTP), no install:
https://mcp.nerq.ai/mcp
import asyncio
from mcp.client.streamable_http import streamablehttp_client
from mcp.client.session import ClientSession
async def main():
async with streamablehttp_client("https://mcp.nerq.ai/mcp") as (r, w, _):
async with ClientSession(r, w) as s:
await s.initialize()
print(await s.call_tool("is_safe", {"entity": "langchain"}))
asyncio.run(main())
stdio clients — this repo's server.py is a thin bridge that forwards stdio to the hosted
endpoint (no data, no secrets):
pip install -r requirements.txt
python server.py # bridges stdio -> https://mcp.nerq.ai/mcp
About Nerq
Nerq is an independent, quantitative trust layer for software and the machine economy. Trust Scores are computed from independently measured dimensions (security, maintenance, popularity, compliance, …) and are machine-readable. Learn more at nerq.ai.
License
MIT — see LICENSE.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.