MCPfinder
AI-first MCP server discovery tool that enables agents to search, inspect, and install MCP servers from multiple registries.
README
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:
stdiovianpx -y @mcpfinder/server - Canonical package:
@mcpfinder/server - MCP Registry entry:
dev.mcpfinder/server - Public HTTP endpoint: intentionally not advertised as canonical until its tool surface is fully identical to the local server
Quick Install
Claude Desktop
{
"mcpServers": {
"mcpfinder": {
"command": "npx",
"args": ["-y", "@mcpfinder/server"]
}
}
}
Cursor
{
"mcpServers": {
"mcpfinder": {
"command": "npx",
"args": ["-y", "@mcpfinder/server"]
}
}
}
Claude Code
{
"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 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):
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):
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(omitcategoryto list; passcategoryfor top servers).
Preferred workflow:
search_mcp_servers(query="postgres")get_server_details(name="...best candidate...")get_install_config(name="...best candidate...", platform="claude-desktop")- 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:
confidenceScorerecommendationReasonwarningFlagsupdatedAtsourceCount
Data Sources
MCPfinder aggregates:
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
Example Workflow
User request:
I need my assistant to read data from PostgreSQL.
Agent workflow:
search_mcp_servers(query="postgres")
get_server_details(name="io.example/postgres")
get_install_config(name="io.example/postgres", platform="cursor")
Agent response:
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
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
pnpm install
pnpm --filter @mcpfinder/core build
pnpm --filter @mcpfinder/server build
node packages/mcp-server/dist/index.js
Current Limitations
- The local
stdioserver is the canonical interface. Install vianpx -y @mcpfinder/server. - There is no hosted HTTP MCP endpoint currently served at
mcpfinder.dev/mcp. Theapi-workerpackage 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 asemanticQueryparameter alongside the existing keywordquery, 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 intoapi-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.
capabilityCountis 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'spackage.jsonfor anmcp.toolshint; 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 committedmcp-publisherlogin step triggered onv*tags.
Links
- Website: mcpfinder.dev
- GitHub: mcpfinder/mcpfinder
- npm: @mcpfinder/server
- MCP Registry:
dev.mcpfinder/server
Built by Coder AI under AGPL-3.0-or-later.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。