fabric-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
fabric-mcp by ksylvan | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 86 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | this month | this month |
fabric-mcp · Summary
Fabric MCP Server integrates Daniel Miessler's Fabric AI framework into MCP-enabled tools through a standalone server.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
fabric-mcp · Use cases
- Using Fabric's specialized prompts for code explanation and refactoring directly within IDEs
- Accessing Fabric's pattern library through MCP-enabled chat interfaces
- Leveraging Fabric's AI capabilities in custom MCP-based applications
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
fabric-mcp · Install
Installation
From PyPI (for users)
pip install fabric-mcpFrom Source (for developers)
git clone https://github.com/ksylvan/fabric-mcp.git
cd fabric-mcp
uv sync --dev
source .venv/bin/activateConfiguration
Set environment variables:
FABRIC_BASE_URL: Base URL of Fabric REST API (default: http://127.0.0.1:8080)FABRIC_API_KEY: API key for authentication (if required)
Running the Server
# Standard I/O transport (default)
fabric-mcp --stdio
# HTTP transport
fabric-mcp --http-streamable --host 0.0.0.0 --port 3000Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"fabric": {
"command": "fabric-mcp",
"args": ["--stdio"]
}
}
}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.