filesystem vs pancake-pos-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | pancake-pos-mcp by nguyennguyenit | |
|---|---|---|
| Stars | ★ 85,748 | ★ 28 |
| 30天用量 | — | — |
| 综合分 | 77 | 46 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 电商开发者工具运维基建 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
pancake-pos-mcp · 概述
针对Pancake POS的MCP服务器,提供24个越南电子商务管理工具。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
pancake-pos-mcp · 使用场景
- 自动化越南电子商务企业的订单处理、发货和状态更新
- 管理多个仓库的库存和盘点
- 跨多个电子商务平台(Shopee、Lazada、TikTok)同步产品和订单
- 跟踪CRM活动和销售管道机会
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 中安装。
pancake-pos-mcp · 安装
安装
- 克隆仓库:
git clone https://github.com/nguyennguyenit/pancake-pos-mcp.git
cd pancake-pos-mcp- 安装依赖:
bun install- 配置凭证:
cp .env.example .env
# 编辑 .env 文件,填入你的 PANCAKE_POS_API_KEY 和 PANCAKE_POS_SHOP_ID- 运行服务器:
bun run src/index.ts- 对于 Claude Desktop,添加到
claude_desktop_config.json:
{
"mcpServers": {
"pancake-pos": {
"command": "bun",
"args": ["run", "/path/to/pancake-pos-mcp/src/index.ts"]
}
}
}