zenfeed vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
zenfeed by glidea | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,677 | ★ 85,748 |
| 30d uses | — | — |
| Score | 54 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsProductivityCommunication | File SystemDeveloper ToolsProductivity |
| Language | Go | TypeScript |
| Last commit | 2 mo ago | this month |
zenfeed · Summary
An AI-powered RSS reader that can function as an MCP server for intelligent feed management.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
zenfeed · Use cases
- Personal information management with AI-powered RSS feed summarization
- Web content monitoring with custom rules and notifications
- MCP integration for AI assistants to access RSS feeds
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
zenfeed · Install
Docker Installation
curl -L -O https://raw.githubusercontent.com/glidea/zenfeed/main/docker-compose.yml
API_KEY="sk-..." docker-compose -p zenfeed up -dMCP Configuration (Cherry Studio)
{
"mcpServers": {
"zenfeed": {
"command": "docker",
"args": ["run", "-p", "1301:1301", "glidea/zenfeed:latest"],
"env": {
"API_KEY": "your_api_key_here"
}
}
}
}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.