Fabric Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Fabric Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Model Context Protocol (MCP) server for Fabric - Daniel Miessler's AI-powered content processing framework.
This MCP server allows Claude (via Claude Desktop or Warp CLI) to use Fabric's extensive collection of AI patterns for content analysis, summarization, learning, coding, security analysis, and more.
See the official Fabric installation guide for detailed instructions.
# macOS
brew install yt-dlp
# Linux/Windows
pip install yt-dlpfabric-mcp.mcpb from ReleasesAsk Claude: "List all fabric patterns"
run_fabric_patternIf you don't have Fabric installed, follow the official Fabric installation guide.
Required only if you want to fetch YouTube transcripts:
# macOS
brew install yt-dlp
# Linux
pip install yt-dlp
# Or: sudo apt install yt-dlp (on Ubuntu/Debian)
# Windows
pip install yt-dlp# Test Fabric
fabric --version
fabric --listpatterns
# Test yt-dlp (optional)
yt-dlp --versionThe easiest way to install:
fabric-mcp.mcpb from ReleasesThe .mcpb file is a self-contained bundle that includes everything needed.
If you want to build from source:
git clone https://github.com/mpzarde/fabric-mcp.git
cd fabric-mcp
npm install
npm run buildThen either:
./build-mcpb.sh (creates fabric-mcp.mcpb you can install)Note: If you installed using the .mcpb bundle (Option 1), Claude Desktop configures this automatically. This section is only needed for manual builds.Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"fabric": {
"command": "node",
"args": ["/absolute/path/to/fabric-mcp/dist/index.js"]
}
}
}Replace `/absolute/path/to/fabric-mcp/` with your actual project path.
Optional environment variables (if needed):
"env": {
"FABRIC_PATH": "/custom/path/to/fabric",
"YTDLP_PATH": "/custom/path/to/yt-dlp"
}Note: Manual configuration is required for Warp. Build from source or extract the .mcpb bundle first.Add to your Warp MCP configuration file:
macOS/Linux: ~/.warp/mcp_config.json
{
"mcpServers": {
"fabric": {
"command": "node",
"args": ["/absolute/path/to/fabric-mcp/dist/index.js"]
}
}
}Replace `/absolute/path/to/fabric-mcp/` with your actual project path.
Optional environment variables (if needed):
"env": {
"FABRIC_PATH": "/custom/path/to/fabric",
"YTDLP_PATH": "/custom/path/to/yt-dlp"
}After configuration:
warp mcp reloadThese tools streamline common workflows by fetching content and applying patterns in one step. Benefits:
These patterns are exposed as dedicated tools with the fabric_ prefix:
#### Content Analysis
fabric_extract_wisdom - Extract key insights and quotes from contentfabric_summarize - Create concise summariesfabric_analyze_claims - Analyze and fact-check claimsfabric_analyze_paper - Analyze academic papers#### Learning
fabric_create_quiz - Generate quiz questionsfabric_to_flashcards - Convert content to flashcards#### Development
fabric_summarize_git_diff - Summarize git diffs for reviewsfabric_create_coding_project - Generate project structure from ideasfabric_explain_code - Explain code in simple terms#### Security & Operations
fabric_analyze_logs - Analyze log filesfabric_analyze_incident - Analyze security incidents#### Writing
fabric_improve_writing - Improve writing qualityExtract wisdom from a YouTube video:
User: Can you extract the key insights from this video?
https://www.youtube.com/watch?v=dQw4w9WgXcQ
Claude: [Uses get_youtube_transcript + fabric_extract_wisdom]Summarize an article:
User: Summarize this article: [paste article text]
Claude: [Uses fabric_summarize]Create flashcards from lecture notes:
User: Convert these lecture notes into flashcards: [paste notes]
Claude: [Uses fabric_to_flashcards]Analyze a git diff:
User: Review this git diff and summarize the changes:
[paste git diff output]
Claude: [Uses fabric_summarize_git_diff]For efficiency, use the combined tools that fetch and analyze in one step:
User: Extract wisdom from this YouTube video:
https://www.youtube.com/watch?v=example
Claude: [Uses analyze_youtube_video with pattern='extract_wisdom']User: Summarize this article:
https://example.com/article
Claude: [Uses analyze_url with pattern='summarize']User: Explain the code in /path/to/script.py
Claude: [Uses analyze_file with pattern='explain_code']Claude can chain multiple patterns together:
User: Get the transcript from this video, extract the wisdom,
then create flashcards from it.
https://www.youtube.com/watch?v=example
Claude:
[1. Uses get_youtube_transcript]
[2. Uses fabric_extract_wisdom on transcript]
[3. Uses fabric_to_flashcards on extracted wisdom]Based on Daniel Miessler's Fabric patterns:
create_coding_project or similar patterns)summarize_git_diff)run_fabric_pattern with agility_story)to_flashcards)create_quiz)analyze_malware)analyze_logs)run_fabric_pattern)Ask Claude: "Run a health check" - this will verify:
#### Fabric not found
Error: Failed to spawn fabric: ENOENT
Solutions:
which fabric and fabric --versionFABRIC_PATH in your MCP config#### Pattern not found
Error: Pattern not found: pattern_name
Solutions:
fabric --updatepatternsextract_wisdom not extractWisdom)#### YouTube transcripts not working
Error: Failed to fetch YouTube transcript
Solutions:
brew install yt-dlp (macOS) or pip install yt-dlpyt-dlp --versionYTDLP_PATH in your MCP config#### MCP server not appearing in Claude
Solutions:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%/Claude/claude_desktop_config.jsondist/index.js is absolute~/Library/Logs/Claude/mcp-server-fabric.log#### Pattern execution timeout
Error: Fabric command timed out
Solutions:
# Build TypeScript only
npm run build
# Build complete .mcpb bundle
./build-mcpb.shnpm run watch# Build the project
npm run build
# Test the MCP server
node dist/index.js
# Server will run on stdio and wait for MCP protocol messages
# Or use the health check to verify dependencies
echo '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"health_check","arguments":{}}}' | node dist/index.js┌─────────────────┐
│ Claude/Warp │
└────────┬────────┘
│ MCP Protocol (stdio)
▼
┌─────────────────┐
│ MCP Server │ ← This project
│ (Node.js) │
└────────┬────────┘
│ Direct CLI calls
▼
┌─────────────────┐
│ Fabric CLI │
│ (fabric cmd) │
└────────┬────────┘
│
▼
┌─────────────────┐
│ AI Patterns │
│ OpenAI/etc. │
└─────────────────┘The MCP server:
MIT
Contributions welcome! Please open an issue or PR.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.