filesystem vs MCPollinations
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | MCPollinations by pinkpixel-dev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 41 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | AI / LLM ToolsMediaDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 2 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
MCPollinations · Summary
MCP server for AI assistants to generate images, text, and audio through Pollinations APIs.
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
MCPollinations · Use cases
- Generate images from text prompts and save them in various formats
- Create audio responses from text with customizable voices
- Edit existing images or create new ones based on reference images
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.
MCPollinations · Install
Installation
Via Smithery (Recommended for Claude Desktop)
npx -y @smithery/cli install @pinkpixel-dev/mcpollinations --client claudeUsing npx (No installation required)
npx @pinkpixel-dev/mcpollinationsGlobal Installation
npm install -g @pinkpixel-dev/mcpollinations
mcpollinationsClone from Repository
git clone https://github.com/pinkpixel-dev/mcpollinations.git
cd mcpollinations
node pollinations-mcp-server.jsClaude Desktop Integration
Add to your Claude Desktop config.json:
{
"mcpollinations": {
"command": "npx",
"args": ["-y", "@pinkpixel-dev/mcpollinations"],
"env": {
"token": "YOUR_TOKEN_OPTIONAL",
"referrer": "your-app-or-domain-optional",
"IMAGE_MODEL": "flux",
"IMAGE_WIDTH": "1024",
"IMAGE_HEIGHT": "1024",
"OUTPUT_DIR": "./mcpollinations-output"
}
}
}