MiniMax-Coding-Plan-MCP vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
MiniMax-Coding-Plan-MCP by MiniMax-AI | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 79 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 3 mo ago | this month |
MiniMax-Coding-Plan-MCP · Summary
Specialized MCP server providing coding-specific tools like web search and image analysis for MiniMax users.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
MiniMax-Coding-Plan-MCP · Use cases
- Enhancing code documentation with web search
- Analyzing UI designs and screenshots for implementation
- Researching code solutions and best practices
- Translating visual mockups to code implementations
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
MiniMax-Coding-Plan-MCP · Install
Installation
- Get your API key from [MiniMax](https://www.minimax.io/platform/user-center/basic-information/interface-key).
- Install
uv(Python package manager):curl -LsSf https://astral.sh/uv/install.sh | sh - Configure your MCP client with the following settings:
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"MiniMax": {
"command": "uvx",
"args": [
"minimax-coding-plan-mcp",
"-y"
],
"env": {
"MINIMAX_API_KEY": "insert-your-api-key-here",
"MINIMAX_API_HOST": "https://api.minimax.io" // or "https://api.minimaxi.com" for mainland
}
}
}
}Cursor
Go to Cursor -> Preferences -> Cursor Settings -> MCP -> Add new global MCP Server and add the above configuration.
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using 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 Extension
Click the installation buttons in the README to install directly in VS Code.