mcp-task-manager-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-task-manager-server by bsmi021 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 23 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | ProductivityDeveloper ToolsOther | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 11 mo ago | this month |
mcp-task-manager-server · Summary
An MCP server for project and task management using SQLite with client-driven tools.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-task-manager-server · Use cases
- AI agents managing complex project workflows across multiple tasks
- Development teams tracking bug fixes and feature implementations
- Personal productivity systems for task prioritization and dependency management
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-task-manager-server · Install
Installation
- **Prerequisites:** Node.js (LTS recommended), npm
- **Install Dependencies:**
``bash npm install ``
- **Run in Development Mode:**
``bash npm run dev ``
- **Build for Production:**
``bash npm run build ``
- **Run Production Build:**
``bash npm start ``
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"task-manager": {
"command": "node",
"args": ["dist/server.js"],
"env": {
"DATABASE_PATH": "./data/taskmanager.db"
}
}
}
}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.