2,000+ MCP servers read at source level. Know what one does before you connect. Free, no key.
MCPpedia last refreshed this data
biz.sri-test/verifier is an MCP server that 2,000+ MCP servers read at source level. Know what one does before you connect. Free, no key. Its tool list has not been published yet over http, requires no API key, and scores 87/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"sri": {
"url": "https://sri-test.biz/mcp",
"type": "http"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Read what an MCP server does before you connect to it.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'check_mcp_server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked check_mcp_server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Compress tool outputs, logs, files, and RAG chunks before they reach the LLM. 60-95% fewer tokens, same answers. Library, proxy, MCP server.
Transport for TMCP using STDIO
The graph based agentic IDE
Buddhist canon tools: search, passages, cross-canon parallels, dictionaries — all URN-cited.
MCP Security Weekly
Get CVE alerts and security updates for biz.sri-test/verifier and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Read what an MCP server does before you connect to it.
Connecting an MCP server hands it a channel into your agent's context and its
tool calls. SRI reads the server's published source and reports what it found —
every observation anchored to a file:line with the code quoted verbatim.
It does not tell you whether a server is safe. It tells you what the code does, and shows you the line it read. You decide.
https://sri-test.biz/mcp (Streamable HTTP)Remote MCP server, no install, no API key.
{
"mcpServers": {
"sri": {
"type": "http",
"url": "https://sri-test.biz/mcp"
}
}
}
claude mcp add --transport http sri https://sri-test.biz/mcp
Point it at https://sri-test.biz/mcp. There is one tool and no auth.
GET on that URL returns 405 — this server does not offer a server-initiated
SSE stream, which the spec permits. Send JSON-RPC over POST.
check_mcp_server| Argument | Required | Meaning |
|---|---|---|
name | yes | Server name as published in the registry, e.g. io.github.firebase/firebase-mcp |
version | yes | Exact version, e.g. 1.2.3 |
ecosystem | no | Always mcp; other ecosystems are not covered |
Returns a risk_level, a summary, and a list of findings. Each finding carries
location (file:line), evidence (the code, quoted), and why.
If the server is not in the corpus you get status: "queued", an explicit
"nothing has been checked" — not a clean result — and no charge. We do not
bill for an answer we could not give.
curl -X POST https://sri-test.biz/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
"params":{"name":"check_mcp_server",
"arguments":{"name":"io.github.firebase/firebase-mcp","version":"0.3.0"}}}'
There is a plain REST endpoint too, if that is easier:
curl -X POST https://sri-test.biz/v1/verify \
-H 'Content-Type: application/json' \
-d '{"ecosystem":"mcp","name":"io.github.firebase/firebase-mcp","version":"0.3.0"}'
GET /v1/price is open and tells you the current terms.
GET /v1/docs is the OpenAPI spec.
| Category | What it means |
|---|---|
credential_access | Reads environment credentials, tokens, or key files |
network_egress | Sends data to a host outside the package's own service |
install_script | Executes code at install time (postinstall, setup.py) |
prompt_injection_surface | Tool text or returned data that steers the agent toward actions unrelated to the tool's stated purpose |
obfuscation | Encoded strings decoded and executed |
typosquat | Name close to a well-known package, different publisher |
excessive_permission | Permissions beyond the declared purpose |
Severity is info / low / medium / high. risk_level is the highest
severity among the findings, derived in code rather than asked for — a verdict
with no findings behind it cannot be published.