openfinclaw-cli vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
openfinclaw-cli by mirror29 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 63 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 77 |
| 官方 | — | ✓ |
| 分类 | 金融数据AI / LLM 工具开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
openfinclaw-cli · 概述
OpenFinClaw 是一个MCP服务器,为多个AI平台提供AI驱动的量化交易研究、策略生成和回测功能。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
openfinclaw-cli · 使用场景
- 通过自然语言提示生成和回测交易策略
- 跨多个市场获取金融研究和分析
- 通过社区排行榜分享和发现量化策略
- 将量化交易功能集成到AI编程环境中
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
openfinclaw-cli · 安装
# 安装并自动配置
npx @openfinclaw/cli@latest install
# 非交互式安装
npx @openfinclaw/cli@latest install --yes --platforms cursor,claude-code --tool-groups deepagent,strategy --api-key fch_xxx
# 配置Claude Desktop
# 添加到 ~/.claude/settings.json:
{
"mcpServers": {
"openfinclaw": {
"command": "npx",
"args": ["@openfinclaw/cli", "serve", "--tools=deepagent,strategy"],
"env": {
"OPENFINCLAW_API_KEY": "fch_xxx"
}
}
}
}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 中安装。