fabric-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
fabric-mcp by ksylvan | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 86 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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"]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything