MCPfinder lets AI agents discover and install MCP servers autonomously
MCPfinder is a self-referential MCP server that aggregates ~25,000 entries from the official MCP registry, Glama, and Smithery, letting AI agents autonomously discover and configure other MCP servers without manual setup.
Score breakdown
Developers building agentic systems can eliminate the repetitive manual work of browsing registries and editing config files by installing MCPfinder once and letting the agent handle MCP server discovery and setup autonomously.
- 01MCPfinder is itself an MCP server, installed once via `npx -y @mcpfinder/server` using standard stdio transport.
- 02It aggregates ~25,000 deduplicated, ranked MCP server entries from the official MCP registry, Glama, and Smithery.
- 03Once installed, it enables AI agents to autonomously discover and configure other MCP servers without manual registry browsing or `mcp.json` editing.
MCPfinder addresses a friction point in the rapidly growing Model Context Protocol ecosystem: every time a developer needed to connect an agent to a new service, they had to manually browse registries, determine the transport type, identify required environment variables, and edit `mcp.json` files by hand. The project, shared by author coderai, solves this by making the discovery tool itself an MCP server — a self-bootstrapping design where you install it once as a "base capability" via standard stdio using `npx -y @mcpfinder/server`.
Once installed, an agent can autonomously handle requests like "I need to query my PostgreSQL database" by searching the catalog and configuring the appropriate MCP server without further manual intervention.
Once installed, an agent can autonomously handle requests like "I need to query my PostgreSQL database" by searching the catalog and configuring the appropriate MCP server without further manual intervention. The catalog aggregates and deduplicates entries from three sources — the official MCP registry, Glama, and Smithery — totaling around 25,000 combined entries, which are then ranked for relevance. MCPfinder is completely free and licensed under AGPL-3.0.
Key facts
- 01MCPfinder is itself an MCP server, installed once via `npx -y @mcpfinder/server` using standard stdio transport.
- 02It aggregates ~25,000 deduplicated, ranked MCP server entries from the official MCP registry, Glama, and Smithery.
- 03Once installed, it enables AI agents to autonomously discover and configure other MCP servers without manual registry browsing or `mcp.json` editing.
- 04The tool is free and released under the AGPL-3.0 license.
- 05The project was motivated by the manual overhead of identifying transport types, required env vars, and config files each time a new MCP server was needed.