filesystem vs TWSEMCPServer
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | TWSEMCPServer by twjackysu | |
|---|---|---|
| Stars | ★ 85,748 | ★ 90 |
| 30天用量 | — | — |
| 综合分 | 77 | 48 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 金融数据AI / LLM 工具开发者工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
TWSEMCPServer · 概述
台湾股票市场数据MCP服务器,提供实时报价和金融分析功能。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
TWSEMCPServer · 使用场景
- 分析特定台湾公司的股票趋势
- 追踪台湾市场的外资投资模式
- 筛选高股息股票和即将除权息的日期
- 监控市场热点和异常交易量
- 筛选具有良好ESG表现的价值股
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 中安装。
TWSEMCPServer · 安装
安装步骤
在线使用(推荐)
{
"twstockmcpserver": {
"transport": "streamable_http",
"url": "https://TW-Stock-MCP-Server.fastmcp.app/mcp"
}
}Docker 使用(stdio,免自架服务器)
{
"twstockmcpserver": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--pull=always",
"-e",
"MCP_STDIO=1",
"ghcr.io/twjackysu/twsemcpserver:latest"
]
}
}Docker 使用(HTTP,自架服务器)
docker run -d -p 8000:8000 -e PORT=8000 ghcr.io/twjackysu/twsemcpserver:latest本地安装
git clone https://github.com/twjackysu/TWStockMCPServer.git
cd TWStockMCPServer
uv sync && uv run fastmcp dev server.py