First-MCP-Server-Project vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
First-MCP-Server-Project by burakarslan0110 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 32 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具其它 | 本地文件系统开发者工具效率工具 |
| 实现语言 | C# | TypeScript |
| 最近提交 | 5 个月前 | 本月 |
First-MCP-Server-Project · 概述
一个基于.NET 10的MCP服务器,为AI助手提供数学和字符串处理工具。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
First-MCP-Server-Project · 使用场景
- 让AI助手在不离开聊天界面的情况下执行数学计算
- 为AI提供文本处理功能以进行内容分析
- 展示.NET环境下的MCP服务器实现,供开发者构建扩展
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
First-MCP-Server-Project · 安装
安装步骤
- 安装 [.NET 10.0 SDK](https://dotnet.microsoft.com/download/dotnet/10.0)
- 克隆仓库:
git clone https://github.com/burakarslan0110/First-MCP-Server-Project.git - 进入项目目录:
cd First-MCP-Server-Project - 恢复依赖项:
dotnet restore - 构建项目:
dotnet build
使用方法
- 运行服务器:
dotnet run --project First-MCP-Server-Project - 配置您的AI助手(如Claude Desktop)连接到此MCP服务器:
{
"mcpServers": {
"first-mcp-server": {
"command": "dotnet",
"args": ["run", "--project", "项目路径"]
}
}
}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 中安装。