# 安装 MCPfinder - MCP Server Discovery

- 类型: MCP 工具
- 说明: 帮助用户跨多个注册源发现并安装合适的 MCP 服务器。
- 仓库: https://github.com/mcpfinder/mcpfinder
- ⚠ 安全: 该工具来自官方 Registry 且开源，未声明需要密钥或固定远程端点，整体风险偏低；但其功能包含发现并安装 MCP server，结合系统已判定具备代码执行能力，仍需对安装来源与本机执行边界保持审慎。

## 方式一 · 一键代装（复制提示词让 AI 代劳）

### Claude Code
```
请帮我安装 askskill 上的 "MCPfinder - MCP Server Discovery" MCP 服务：
执行：claude mcp add dev-mcpfinder-server -- npx -y @mcpfinder/server
```

### Codex
```
请帮我安装 askskill 上的 "MCPfinder - MCP Server Discovery" MCP 服务：
在 ~/.codex/config.toml 中添加：
[mcp_servers.dev-mcpfinder-server]
command = "npx"
args = ["-y","@mcpfinder/server"]
然后重启 Codex 生效
```

### Cursor
```
请帮我安装 askskill 上的 "MCPfinder - MCP Server Discovery" MCP 服务：
在 .cursor/mcp.json 的 "mcpServers" 中添加：
"dev-mcpfinder-server": { "command": "npx", "args": ["-y","@mcpfinder/server"] }
然后在 Cursor 设置 > MCP 中启用
```

## 方式二 · 命令行安装（原生命令与配置）

### Claude Code
```bash
claude mcp add dev-mcpfinder-server -- npx -y @mcpfinder/server
```

### Codex
```bash
codex mcp add dev-mcpfinder-server -- npx -y @mcpfinder/server
```
配置文件 ~/.codex/config.toml：
```toml
[mcp_servers.dev-mcpfinder-server]
command = "npx"
args = ["-y","@mcpfinder/server"]
```

### Cursor
配置文件 .cursor/mcp.json：
```json
{
  "mcpServers": {
    "dev-mcpfinder-server": {
      "command": "npx",
      "args": [
        "-y",
        "@mcpfinder/server"
      ]
    }
  }
}
```
一键安装：cursor://anysphere.cursor-deeplink/mcp/install?name=dev-mcpfinder-server&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBtY3BmaW5kZXIvc2VydmVyIl19
