mcp-shrimp-task-manager vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-shrimp-task-manager by cjo4m06 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2,100 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | 9 mo ago | this month |
mcp-shrimp-task-manager · Summary
MCP server for intelligent task management that breaks down complex projects into structured dev tasks with dependency tracking.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-shrimp-task-manager · Use cases
- Feature development: AI agents can plan and implement features by breaking them into subtasks
- Bug fixing: Systematic identification and resolution of issues with dependency tracking
- Research projects: Systematic exploration of technologies and solutions
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
mcp-shrimp-task-manager · Install
Installation
- Clone the repository:
git clone https://github.com/cjo4m06/mcp-shrimp-task-manager.git
cd mcp-shrimp-task-manager- Install dependencies and build:
npm install
npm run build- Configure your MCP client (e.g., Claude Desktop):
{
"mcpServers": {
"shrimp-task-manager": {
"command": "node",
"args": ["/path/to/mcp-shrimp-task-manager/dist/index.js"],
"env": {
"DATA_DIR": "/path/to/your/shrimp_data",
"TEMPLATES_USE": "en",
"ENABLE_GUI": "false"
}
}
}
}- Start your MCP client with the 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.