filesystem vs gemini-skill
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | gemini-skill by WJZ-P | |
|---|---|---|
| Stars | ★ 85,748 | ★ 813 |
| 30d uses | — | — |
| Score | 77 | 52 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | AI / LLM ToolsBrowser AutomationProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
gemini-skill · Summary
MCP server that automates Google Gemini through browser automation for image generation, chat, and image extraction.
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
gemini-skill · Use cases
- Generate images through text prompts in AI assistants
- Automate multi-turn conversations with Gemini
- Extract and download images from chat conversations automatically
- Integrate Gemini capabilities into AI agent workflows
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.
gemini-skill · Install
Installation
Prerequisites
- Node.js ≥ 18
- Chrome/Edge/Chromium browser with Google account logged in
Steps
git clone https://github.com/WJZ-P/gemini-skill.git
cd gemini-skill
npm installConfiguration
Create a .env file in the project root with your configuration:
BROWSER_DEBUG_PORT=40821
BROWSER_HEADLESS=false
DAEMON_TTL_MS=1800000
OUTPUT_DIR=./gemini-imageClaude Desktop Configuration
Add to Claude Desktop's claude_desktop_config.json:
{
"mcpServers": {
"gemini": {
"command": "node",
"args": ["<absolute_path_to_gemini-skill>/src/mcp-server.js"]
}
}
}