MCP server intelligence profile

Fabric MCP Server

Enables Claude to use Fabric's AI patterns for content analysis, summarization, learning, coding, and security analysis via MCP

Local Onlympzarde
Awaiting current scanNpm · 1.0.1

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
19Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install @angrydad67/fabric-mcp-server from npm

Version 1.0.1 declares 1 executable entrypoint.

npm install --save-exact @angrydad67/fabric-mcp-server@1.0.1
npx -y -p @angrydad67/fabric-mcp-server@1.0.1 @angrydad67/fabric-mcp-server
MCP client configuration example
{
  "mcpServers": {
    "@angrydad67/fabric-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "@angrydad67/fabric-mcp-server@1.0.1",
        "@angrydad67/fabric-mcp-server"
      ]
    }
  }
}

Identity

Canonical slugfabric-mcp-server-6f19a2c9DeploymentLocal Only
Canonical packagenpm:@angrydad67/fabric-mcp-serverRepositorympzarde/fabric-mcp
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@angrydad67/fabric-mcp-server1.0.11Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@angrydad67/fabric-mcp-server1.0.1CurrentSep 5, 202619 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
fabric-mcp-serverServer-reported name
1Capability groups
Aug 22, 2026Observed

Tools 19

ToolCategoryAnnotationsRisk
analyze_fileRead a file and analyze it with a Fabric pattern in one step. This ensures the complete file content is processed without truncation. Useful for analyzing documents, code files, logs, etc.
Input schema
{
  "type": "object",
  "properties": {
    "file_path": {
      "type": "string",
      "description": "The absolute path to the file to analyze"
    },
    "pattern": {
      "type": "string",
      "description": "The Fabric pattern to apply (e.g., 'summarize', 'explain_code', 'analyze_logs', etc.)"
    }
  },
  "required": [
    "file_path",
    "pattern"
  ]
}
analyze_urlFetch content from a URL and analyze it with a Fabric pattern in one step. Works with articles, documentation, blog posts, etc. This ensures complete content is processed without truncation.
Input schema
{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "The URL to fetch and analyze"
    },
    "pattern": {
      "type": "string",
      "description": "The Fabric pattern to apply (e.g., 'extract_wisdom', 'summarize', 'analyze_paper', etc.)"
    }
  },
  "required": [
    "url",
    "pattern"
  ]
}
analyze_youtube_videoFetch a YouTube transcript and analyze it with a Fabric pattern in one step. This ensures the complete transcript is processed without truncation. Use this instead of calling get_youtube_transcript and then a pattern separately.
Input schema
{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "The YouTube video URL"
    },
    "pattern": {
      "type": "string",
      "description": "The Fabric pattern to apply (e.g., 'extract_wisdom', 'summarize', 'analyze_claims', 'create_quiz', etc.)"
    }
  },
  "required": [
    "url",
    "pattern"
  ]
}
fabric_analyze_claimsAnalyze and fact-check claims made in content
Input schema
{
  "type": "object",
  "properties": {
    "input": {
      "type": "string",
      "description": "The input text to process"
    }
  },
  "required": [
    "input"
  ]
}
fabric_analyze_incidentAnalyze security incidents or system failures
Input schema
{
  "type": "object",
  "properties": {
    "input": {
      "type": "string",
      "description": "The input text to process"
    }
  },
  "required": [
    "input"
  ]
}
fabric_analyze_logsAnalyze log files for issues and patterns
Input schema
{
  "type": "object",
  "properties": {
    "input": {
      "type": "string",
      "description": "The input text to process"
    }
  },
  "required": [
    "input"
  ]
}
fabric_analyze_paperAnalyze academic papers or technical documents
Input schema
{
  "type": "object",
  "properties": {
    "input": {
      "type": "string",
      "description": "The input text to process"
    }
  },
  "required": [
    "input"
  ]
}
fabric_create_coding_projectGenerate project structure and planning from an idea
Input schema
{
  "type": "object",
  "properties": {
    "input": {
      "type": "string",
      "description": "The input text to process"
    }
  },
  "required": [
    "input"
  ]
}
fabric_create_quizGenerate quiz questions from content for learning
Input schema
{
  "type": "object",
  "properties": {
    "input": {
      "type": "string",
      "description": "The input text to process"
    }
  },
  "required": [
    "input"
  ]
}
fabric_explain_codeExplain code in simple terms
Input schema
{
  "type": "object",
  "properties": {
    "input": {
      "type": "string",
      "description": "The input text to process"
    }
  },
  "required": [
    "input"
  ]
}
fabric_extract_wisdomExtract key insights, quotes, and wisdom from any content (articles, videos, podcasts)
Input schema
{
  "type": "object",
  "properties": {
    "input": {
      "type": "string",
      "description": "The input text to process"
    }
  },
  "required": [
    "input"
  ]
}
fabric_improve_writingImprove writing quality and clarity
Input schema
{
  "type": "object",
  "properties": {
    "input": {
      "type": "string",
      "description": "The input text to process"
    }
  },
  "required": [
    "input"
  ]
}
fabric_summarizeCreate a concise summary of content
Input schema
{
  "type": "object",
  "properties": {
    "input": {
      "type": "string",
      "description": "The input text to process"
    }
  },
  "required": [
    "input"
  ]
}
fabric_summarize_git_diffSummarize git diff output for code reviews
Input schema
{
  "type": "object",
  "properties": {
    "input": {
      "type": "string",
      "description": "The input text to process"
    }
  },
  "required": [
    "input"
  ]
}
fabric_to_flashcardsConvert content into flashcards for studying
Input schema
{
  "type": "object",
  "properties": {
    "input": {
      "type": "string",
      "description": "The input text to process"
    }
  },
  "required": [
    "input"
  ]
}
get_youtube_transcriptFetch transcript from a YouTube video URL
Input schema
{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "The YouTube video URL"
    }
  },
  "required": [
    "url"
  ]
}
health_checkCheck if Fabric, yt-dlp, and other dependencies are installed and configured correctly. Provides installation instructions if needed.
Input schema
{
  "type": "object",
  "properties": {}
}
list_fabric_patternsList all available Fabric patterns
Input schema
{
  "type": "object",
  "properties": {}
}
run_fabric_patternRun any Fabric pattern with custom input. Use this for patterns not covered by specific tools.
Input schema
{
  "type": "object",
  "properties": {
    "pattern": {
      "type": "string",
      "description": "The name of the Fabric pattern to run"
    },
    "input": {
      "type": "string",
      "description": "The input text to process with the pattern"
    }
  },
  "required": [
    "pattern",
    "input"
  ]
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Fabric MCP Server questions

How do I install Fabric MCP Server?

Install the selected package version with: npm install --save-exact @angrydad67/fabric-mcp-server@1.0.1

What tools does Fabric MCP Server provide?

Fabric MCP Server exposed 19 tools during independent protocol observation, including analyze_file, analyze_url, analyze_youtube_video, fabric_analyze_claims, fabric_analyze_incident, fabric_analyze_logs, fabric_analyze_paper, fabric_create_coding_project, and others.

Is Fabric MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

Microsoft & Azure intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Developer Tool MCP ServersOfficial vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.