MCP server discovery - find and install MCP servers from Official Registry, Glama, and Smithery
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-daedalus-mcp-server-find": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server discovery - find and install MCP servers from Official Registry, Glama, and Smithery
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe 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
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Make HTTP requests and fetch web content
Read, write, and manage files on the local filesystem
MCP Security Weekly
Get CVE alerts and security updates for io.github.daedalus/mcp-server-find and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server discovery - find and install MCP servers from Official Registry, Glama, and Smithery.
mcp-name: io.github.daedalus/mcp-server-find
pip install mcpfinder
mcpfinder is an MCP server that helps AI agents discover, evaluate, and install other MCP servers. It aggregates data from:
{
"mcpServers": {
"mcpfinder": {
"command": "python",
"args": ["-m", "mcpfinder"]
}
}
}
from mcpfinder import search_servers, get_server_details, get_install_config
# Initialize database
from mcpfinder.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/