MiniMax-MCP-JS vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
MiniMax-MCP-JS by MiniMax-AI | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 122 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具多媒体开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 10 个月前 | 本月 |
MiniMax-MCP-JS · 概述
JavaScript/TypeScript MCP服务器,提供MiniMax AI能力,包括图像/视频生成、语音合成和语音克隆。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
MiniMax-MCP-JS · 使用场景
- 内容创作者利用AI辅助生成图像和视频
- 开发人员将语音克隆和TTS集成到应用程序中
- 团队使用MCP兼容客户端(如Claude Desktop)访问MiniMax服务
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
MiniMax-MCP-JS · 安装
安装
通过Smithery安装(推荐用于Claude Desktop)
npx -y @smithery/cli install @MiniMax-AI/MiniMax-MCP-JS --client claude手动安装
# 使用pnpm安装(推荐)
pnpm add minimax-mcp-jsClaude Desktop配置
添加到claude_desktop_config.json:
{
"mcpServers": {
"minimax-mcp-js": {
"command": "npx",
"args": [
"-y",
"minimax-mcp-js"
],
"env": {
"MINIMAX_API_HOST": "<https://api.minimaxi.chat|https://api.minimax.chat>",
"MINIMAX_API_KEY": "<您的API密钥>",
"MINIMAX_MCP_BASE_PATH": "<本地输出路径>"
}
}
}
}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 中安装。