Claude-Skills vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
Claude-Skills by borghei | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 138 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | HTML | TypeScript |
| Last commit | this month | this month |
Claude-Skills · Summary
Comprehensive skill library with MCP server integration for Claude Code and other AI assistants.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
Claude-Skills · Use cases
- Enable Claude Code to access specialized tools across different domains through MCP integration
- Deploy pre-configured skill sets for specific roles like SaaS founder or compliance officer
- Use AI assistants with domain-specific expertise across 17 professional domains
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
Claude-Skills · Install
Installation
- Run the MCP server:
python scripts/mcp_server.py- For Claude Desktop, add to your Claude Desktop config:
{
"mcpServers": {
"claude-skills": {
"command": "python",
"args": ["scripts/mcp_server.py"],
"env": {}
}
}
}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.