MCP server discovery - find and install MCP servers from Official Registry, Glama, and Smithery
SaferSkills independently audited mcp-server-find (MCP Server) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
MCP server discovery - find and install MCP servers from Official Registry, Glama, and Smithery.
mcp-name: io.github.daedalus/mcp-server-find
pip install mcp-server-findmcp-server-find is an MCP server that helps AI agents discover, evaluate, and install other MCP servers. It aggregates data from:
{
"mcpServers": {
"mcp-server-find": {
"command": "python",
"args": ["-m", "mcp_server_find"]
}
}
}from mcp_server_find import search_servers, get_server_details, get_install_config
# Initialize database
from mcp_server_find.db import init_database
conn = init_database()
# Search for MCP servers
results = search_servers(conn, "postgres", 10)
# Get server details
detail = get_server_details(conn, "io.modelcontextprotocol/filesystem")
# Generate install config
config = get_install_config(conn, "io.modelcontextprotocol/filesystem", "claude-desktop")search_mcp_servers: Search for MCP servers by keywordget_server_details: Get detailed server informationget_install_config: Generate install config for a platformbrowse_categories: Browse MCP server categoriesinit_database(db_path?: str) -> sqlite3.Connection - Initialize SQLite with FTS5search_servers(conn, query, limit?, filters?) -> list[SearchResult] - Search MCP serversget_server_details(conn, name_or_slug) -> ServerDetail | None - Get detailed server infoget_install_config(conn, name_or_slug, platform) -> InstallConfig - Generate install configlist_categories(conn) -> list[Category] - List all categoriesget_servers_by_category(conn, category, limit?) -> list[dict] - Get servers in categorygit clone https://github.com/daedalus/mcp-server-find.git
cd mcp-server-find
pip install -e ".[test]"
# Run tests
pytest
# Format
ruff format src/ tests/
# Lint
ruff check src/ tests/
# Type check
mypy src/~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.