filesystem vs fred-mcp-server
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | fred-mcp-server by stefanoamorelli | |
|---|---|---|
| Stars | ★ 85,748 | ★ 92 |
| 30天用量 | — | — |
| 综合分 | 77 | 49 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 金融数据AI / LLM 工具开发者工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
fred-mcp-server · 概述
FRED MCP 服务器提供三种强大工具,可全面获取美联储经济数据。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
fred-mcp-server · 使用场景
- 金融分析和市场研究
- 学术研究中的经济数据获取
- 将经济指标集成到 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 中安装。
fred-mcp-server · 安装
安装
使用 Smithery
npx -y @smithery/cli install @stefanoamorelli/fred-mcp-server --client claude手动安装
- 克隆仓库:
git clone https://github.com/stefanoamorelli/fred-mcp-server.git
cd fred-mcp-server- 安装依赖:
pnpm install- 构建项目:
pnpm build配置
添加到您的 Claude Desktop 配置中:
{
"mcpServers": {
"FRED MCP Server": {
"command": "/usr/bin/node",
"args": [
"<PATH_TO_YOUR_CLONED_REPO>/fred-mcp-server/build/index.js"
],
"env": {
"FRED_API_KEY": "<YOUR_API_KEY>"
}
}
}
}