MCP server that finds MCP servers. Discovers, evaluates, and installs 25K+ MCP servers across Official Registry, Glama, and Smithery for any AI client (Claude, Cursor, Cline, Windsurf).
- ✓Open-source license (AGPL-3.0)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Mature repo (>1y old)
claude mcp add mcpfinder -- npx -y @mcpfinder/server{
"mcpServers": {
"mcpfinder": {
"command": "npx",
"args": ["-y", "@mcpfinder/server"]
}
}
}1 items en este repositorio
Install MCPfinder — a local MCP server that searches Official MCP Registry, Glama, and Smithery for 25,000+ MCP servers — into the user's AI client. Use when the user asks for a capability the agent doesn't have (database, API, Slack, filesystem, GitHub, Postgres, etc.) and no MCP tool-finder is already available, or when the user explicitly asks to install MCPfinder or set up MCP-server discovery. Merges the MCPfinder entry into the user's existing MCP config for Claude Desktop, Cursor, Claude Code, Cline, or Windsurf without clobbering other servers, then tells the user exactly what to restart.
Resumen de MCP Servers
# MCPfinder
> The MCP server that helps AI agents discover, evaluate, and install other MCP servers.
MCPfinder is an AI-first discovery layer over the Official MCP Registry, Glama, and Smithery. Install it once, and your assistant can search for missing capabilities, inspect trust signals, review required secrets, and generate client-specific MCP config snippets.
## Canonical Use
- Canonical transport: `stdio` via `npx -y @mcpfinder/server`
- Canonical package: [`@mcpfinder/server`](https://www.npmjs.com/package/@mcpfinder/server)
- MCP Registry entry: [`dev.mcpfinder/server`](https://registry.modelcontextprotocol.io/v0/servers?search=dev.mcpfinder)
- Public HTTP endpoint: intentionally not advertised as canonical until its tool surface is fully identical to the local server
## Quick Install
### Claude Desktop
```json
{
"mcpServers": {
"mcpfinder": {
"command": "npx",
"args": ["-y", "@mcpfinder/server"]
}
}
}
```
### Cursor
```json
{
"mcpServers": {
"mcpfinder": {
"command": "npx",
"args": ["-y", "@mcpfinder/server"]
}
}
}
```
### Claude Code
```json
{
"mcpServers": {
"mcpfinder": {
"command": "npx",
"args": ["-y", "@mcpfinder/server"]
}
}
}
```
Supported install targets today:
- Claude Desktop
- Cursor
- Claude Code
- Cline / Roo Code
- Windsurf
### Install via Agent Skill (let your AI do it)
If your agent supports the [Agent Skills](https://agentskills.io) format
(Claude Code, GitHub Copilot in VS Code, OpenAI Codex, and others), you can
drop a one-line install and let the agent handle the config merge itself.
**Claude Code (global):**
```bash
mkdir -p ~/.claude/skills/install-mcpfinder && \
curl -sSf -o ~/.claude/skills/install-mcpfinder/SKILL.md \
https://mcpfinder.dev/skill/install-mcpfinder/SKILL.md
```
**VS Code (project-scoped):**
```bash
mkdir -p .agents/skills/install-mcpfinder && \
curl -sSf -o .agents/skills/install-mcpfinder/SKILL.md \
https://mcpfinder.dev/skill/install-mcpfinder/SKILL.md
```
Then tell your agent any of: *"install MCPfinder"*, *"connect my AI to
Postgres"*, *"I need a tool for [anything]"* — the skill activates, detects
your client, merges the config without clobbering, and tells you what to
restart.
## For AI Assistants
Use MCPfinder when the user needs a capability you do not already have.
- If the user mentions Slack, Postgres, GitHub, Notion, AWS, Google Drive, filesystems, browsers, APIs, or databases: call `search_mcp_servers`.
- Before recommending a server: call `get_server_details`.
- Before telling the user what to paste into config: call `get_install_config`.
- If the user only knows a domain, not a specific technology: call `browse_categories` (omit `category` to list; pass `category` for top servers).
Preferred workflow:
1. `search_mcp_servers(query="postgres")`
2. `get_server_details(name="...best candidate...")`
3. `get_install_config(name="...best candidate...", platform="claude-desktop")`
4. Tell the user what server you chose, why, which secrets are required, and what restart/reload step is needed.
## Tool Surface
| Tool | Purpose | When to call |
| --- | --- | --- |
| `search_mcp_servers` | Search by keyword, technology, or use case | First step when a capability is missing |
| `get_server_details` | Inspect metadata, trust signals, tools, warnings, env vars | Before recommending or installing |
| `get_install_config` | Generate a JSON config snippet for a target client | After selecting a server |
| `browse_categories` | Single-call category browser (omit `category` to list; pass `category` for top servers) | Domain-driven discovery |
## What MCPfinder Returns
MCPfinder is intentionally optimized for agent consumption.
- Human-readable text summaries
- Structured content for chaining follow-up calls
- Trust signals: source count, verification, popularity, recency
- Warning flags: stale projects, missing repository URL, unclear install path, single-source-only
- Install metadata: config snippet, target file paths, required environment variables, restart instructions
## Ranking and Recommendation
Search ranking uses:
- text relevance
- name-match boost
- community usage (`useCount`)
- official registry presence
- verification signals
Each result is also annotated with:
- `confidenceScore`
- `recommendationReason`
- `warningFlags`
- `updatedAt`
- `sourceCount`
## Data Sources
MCPfinder aggregates:
- [Official MCP Registry](https://registry.modelcontextprotocol.io)
- [Glama](https://glama.ai/mcp/servers)
- [Smithery](https://smithery.ai)
Counts vary over time and differ depending on whether you count raw upstream records or merged/deduplicated entries. Snapshot metadata is the source of truth for the currently published local bootstrap dataset.
## Snapshots and Freshness
First run can bootstrap from a prebuilt SQLite snapshot instead of doing a slow live sync.
- snapshot manifest: `/api/v1/snapshot/manifest.json`
- snapshot database: `/api/v1/snapshot/data.sqlite.gz`
- scheduled build: [`.github/workflows/snapshot.yml`](/Users/lukasz/Git/mcpfinder/.github/workflows/snapshot.yml:1)
## Example Workflow
User request:
```text
I need my assistant to read data from PostgreSQL.
```
Agent workflow:
```text
search_mcp_servers(query="postgres")
get_server_details(name="io.example/postgres")
get_install_config(name="io.example/postgres", platform="cursor")
```
Agent response:
```text
I found a PostgreSQL MCP server with official registry presence and recent metadata.
It requires DATABASE_URL and runs via npx.
Add this JSON to ~/.cursor/mcp.json, then reload Cursor.
```
## Repository Layout
```text
mcpfinder/
├── packages/
│ ├── core/ # sync, SQLite search, trust signals, install-config generation
│ └── mcp-server/ # stdio MCP server
├── landing/ # static website and AI-facing public files
├── api-worker/ # snapshot/support worker for published bootstrap artifacts
└── scripts/ # snapshot builder and other support scripts
```
## Development
```bash
pnpm install
pnpm --filter @mcpfinder/core build
pnpm --filter @mcpfinder/server build
node packages/mcp-server/dist/index.js
```
## Current Limitations
- The local `stdio` server is the canonical interface. Install via `npx -y @mcpfinder/server`.
- There is no hosted HTTP MCP endpoint currently served at `mcpfinder.dev/mcp`. The `api-worker` package is reserved for snapshot support and will only be promoted to a canonical HTTP transport once it exposes the same tool contract as the stdio server.
- Tool metadata quality depends on upstream registries; some servers have rich details, others only partial metadata.
- Tool-level capability extraction is currently strongest for sources that expose tool manifests directly, especially Glama.
## Roadmap
These items are planned but not yet implemented. Informed largely by feedback
from AI agents consuming the tool surface.
- **Semantic search over tool descriptions.** Today's search ranks by keyword
(FTS5) + popularity + source count. It doesn't help when a user describes a
capability in prose that doesn't overlap lexically with the server's name or
description. Plan: index `toolsExposed[*].description` (where upstream exposes
it) into a lightweight embedding column, expose a `semanticQuery` parameter
alongside the existing keyword `query`, and rank hybrid.
- **Hosted HTTP MCP endpoint at `mcpfinder.dev/mcp`.** Today only stdio is
canonical. Serverless AI agents (Workers, Lambda, browser) can't spawn a
subprocess; giving them an HTTP transport with the same 4-tool contract
removes an entire class of blocker. Plan: port the MCP SDK streamable-http
transport into `api-worker/`, re-use the same snapshot-backed database via
R2 + Durable Objects, gate with a lightweight rate limit.
- **Capability-count enrichment for non-Glama rows.** `capabilityCount` is
currently 0 for most Official/Smithery rows because those upstreams don't
publish tool manifests in list responses. Plan: during the snapshot build,
probe the downstream server's README or, for npm packages, parse the tarball's
`package.json` for an `mcp.tools` hint; surface per-row confidence in the
extracted list.
- **CI automation for npm + Registry publish.** Today the release playbook
(`docs/publish-playbook.md`) is manual and consumes a fresh OTP per package.
Plan: move to GitHub Actions with NPM automation tokens and a committed
`mcp-publisher` login step triggered on `v*` tags.
## Links
- Website: [mcpfinder.dev](https://mcpfinder.dev)
- GitHub: [mcpfinder/mcpfinder](https://github.com/mcpfinder/mcpfinder)
- npm: [@mcpfinder/server](https://www.npmjs.com/package/@mcpfinder/server)
- MCP Registry: [`dev.mcpfinder/server`](https://registry.modelcontextprotocol.io/v0/servers?search=dev.mcpfinder)
Built by [Coder AI](https://coderai.dev) under [AGPL-3.0-or-later](LICENSE).
Lo que la gente pregunta sobre mcpfinder
¿Qué es mcpfinder/mcpfinder?
+
mcpfinder/mcpfinder es mcp servers para el ecosistema de Claude AI. MCP server that finds MCP servers. Discovers, evaluates, and installs 25K+ MCP servers across Official Registry, Glama, and Smithery for any AI client (Claude, Cursor, Cline, Windsurf). Tiene 10 estrellas en GitHub y se actualizó por última vez 2d ago.
¿Cómo se instala mcpfinder?
+
Puedes instalar mcpfinder clonando el repositorio (https://github.com/mcpfinder/mcpfinder) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar mcpfinder/mcpfinder?
+
Nuestro agente de seguridad ha analizado mcpfinder/mcpfinder y le ha asignado un Trust Score de 92/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene mcpfinder/mcpfinder?
+
mcpfinder/mcpfinder es mantenido por mcpfinder. La última actividad registrada en GitHub es de 2d ago, con 0 issues abiertos.
¿Hay alternativas a mcpfinder?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega mcpfinder en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/mcpfinder-mcpfinder)<a href="https://claudewave.com/repo/mcpfinder-mcpfinder"><img src="https://claudewave.com/api/badge/mcpfinder-mcpfinder" alt="Featured on ClaudeWave: mcpfinder/mcpfinder" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!
⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。