filesystem vs kindly-web-search-mcp-server
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | kindly-web-search-mcp-server by Shelpuk-AI-Technology-Consulting | |
|---|---|---|
| Stars | ★ 85,748 | ★ 325 |
| 30天用量 | — | — |
| 综合分 | 77 | 50 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 网页抓取AI / LLM 工具开发者工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 1 个月前 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
kindly-web-search-mcp-server · 概述
专为AI编程工具设计的MCP服务器,提供强大的网络搜索和内容检索功能。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
kindly-web-search-mcp-server · 使用场景
- 通过提供完整的StackOverflow和GitHub讨论改进AI编程助手
- 检索最新的编程文档和API参考
- 为AI代理提供全面的网络搜索和内容提取功能
filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。
kindly-web-search-mcp-server · 安装
安装步骤
- 安装
uvx:
curl -LsSf https://astral.sh/uv/install.sh | sh- 安装基于Chromium的浏览器(需要
page_content功能)
- 设置您的搜索API密钥(Serper、Tavily或SearXNG)
- 运行MCP服务器:
uvx --from git+https://github.com/Shelpuk-AI-Technology-Consulting/kindly-web-search-mcp-server \
kindly-web-search-mcp-server start-mcp-serverClaude Desktop配置
在config.json中添加:
{
"mcpServers": {
"kindly-web-search": {
"command": "uvx",
"args": ["--from", "git+https://github.com/Shelpuk-AI-Technology-Consulting/kindly-web-search-mcp-server", "kindly-web-search-mcp-server", "start-mcp-server"],
"env": {
"SERPER_API_KEY": "your-serper-key",
"GITHUB_TOKEN": "your-github-token"
}
}
}
}