mcp-products-server vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-products-server by biobshub | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 33 | 77 |
| 官方 | — | ✓ |
| 分类 | 数据库AI / LLM 工具开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | — | TypeScript |
| 最近提交 | 10 个月前 | 本月 |
mcp-products-server · 概述
基于.NET的 MCP 服务器,提供产品搜索和营销摘要工具,集成 Cosmos DB 和 Blazor 客户端界面。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
mcp-products-server · 使用场景
- 电子商务产品发现和营销内容生成
- AI 驱动的产品推荐系统
- MCP 服务器集成的开发和测试
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
mcp-products-server · 安装
安装
前置条件
- .NET 9.0 SDK
- Azure Cosmos DB 账户
- Azure OpenAI 服务(可选)
设置
- 克隆仓库:
git clone <repository-url>
cd mcp-products-server- 配置环境:
创建包含您的 Azure 端点和配置的 appsettings.Development.json
- 使用 .NET Aspire 运行(推荐):
cd mcp-products-server.AppHost
dotnet run或单独运行组件:
# 终端 1:MCP 服务器
cd mcp-products-server
dotnet run
# 终端 2:Blazor 客户端
cd mcp-products-client
dotnet runClaude Desktop 配置
添加到 Claude Desktop config.json:
{
"mcpServers": {
"products-server": {
"command": "dotnet",
"args": ["run"],
"cwd": "/path/to/mcp-products-server"
}
}
}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 中安装。