filesystem vs slackdump
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | slackdump by rusq | |
|---|---|---|
| Stars | ★ 85,748 | ★ 2,587 |
| 30d uses | — | — |
| Score | 77 | 55 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | CommunicationDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
slackdump · Summary
Slackdump MCP server provides tools to analyze Slack archives without admin privileges.
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
slackdump · Use cases
- Analyze Slack archive data using AI agents without admin access
- Export and migrate Slack workspace data for archiving purposes
- Integrate Slack data analysis into AI workflows using the MCP protocol
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.
slackdump · Install
- Install Slackdump:
``shell brew install slackdump ``
- Create a new MCP project:
``shell slackdump mcp -new opencode ~/my-slack-project ``
- For Claude Desktop, add this to your config.json:
``json { "mcpServers": { "slackdump": { "command": "slackdump", "args": ["mcp"] } } } ``