CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Media Forge

pavelguzenfeld/mcp-media-forge
STDIOregistry active
Summary

Turns text DSLs into visual assets without leaving your Markdown workflow. Exposes tools for rendering Mermaid flowcharts, D2 architecture diagrams, Graphviz dependency graphs, and Vega-Lite charts as SVG or PNG files through a Dockerized renderer. Also generates self-contained HTML pages and slide decks using inline CSS, no Docker needed. Each tool returns a file path with content-based naming, so identical inputs produce identical filenames for git-friendly caching. Validates input before rendering to catch syntax errors early. Includes get_tool_guide for examples and anti-patterns per diagram type. Useful when you need AI agents to generate and embed technical diagrams in documentation without manual toolchain setup.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

MCP Media Forge

npm MCP Registry License: MIT

MCP server that generates diagrams, charts, HTML pages, and slide decks from text DSLs -- designed for AI coding agents to embed into Markdown.

LLM agents call tools like render_mermaid, render_html_page, or render_slides with text input, and get back file paths to assets ready to embed in docs.

Output Gallery

Mermaid Flowchart

Mermaid flowchart

Mermaid Sequence Diagram

Mermaid sequence diagram

D2 Architecture Diagram

D2 architecture diagram

Graphviz Dependency Graph

Graphviz dependency graph

Vega-Lite Bar Chart

Vega-Lite bar chart

Tools

Diagram & Chart Renderers (Docker)

ToolInputFormatsUse Case
render_mermaidMermaid codeSVG, PNGFlowcharts, sequence, ER, state, Gantt, git graphs
render_d2D2 codeSVG, PNGArchitecture diagrams with containers and icons
render_graphvizDOT codeSVG, PNGDependency graphs, network diagrams
render_chartVega-Lite JSONSVG, PNGBar, line, scatter, area, heatmap charts

HTML Generators (No Docker)

ToolInputOutputUse Case
render_html_pageHTML body + themeSelf-contained HTMLTechnical docs, reports, dashboards
render_slidesJSON slide array + themeHTML slide deckPresentations, status updates, walkthroughs

Utilities

ToolDescription
get_tool_guideUsage examples, anti-patterns, complexity limits per tool
list_assetsList all generated files in the output directory

Quick Start

1. Start the rendering container (for diagram tools)

cd docker
docker compose up -d

HTML page and slide tools work without Docker.

2. Install the MCP server

Option A -- npx (no install)

npx mcp-media-forge

Option B -- Clone and build

git clone https://github.com/PavelGuzenfeld/mcp-media-forge.git
cd mcp-media-forge
npm install
npm run build

3. Register with your MCP client

Any MCP-compatible client (Claude Code, Cursor, VS Code + Copilot, Cline, etc.) can use this server. The standard config:

{
  "mcpServers": {
    "media-forge": {
      "command": "node",
      "args": ["/path/to/mcp-media-forge/dist/index.js"],
      "env": {
        "PROJECT_ROOT": "/path/to/your/project"
      }
    }
  }
}

Where to add this depends on your client:

  • Claude Code: ~/.claude/settings.json
  • Cursor: MCP settings panel
  • VS Code (Copilot): .vscode/mcp.json
  • Cline: MCP server configuration

4. Use it

Ask your AI assistant to generate diagrams, pages, or presentations:

"Create a sequence diagram showing the OAuth2 flow and embed it in the README"

"Generate an HTML page summarizing the API architecture with KPI cards"

"Make a slide deck with our Q1 metrics and architecture overview"

The agent calls the appropriate tool, gets back a file path, and embeds it in your markdown.

How It Works

AI Agent (any MCP client)
    |
    | MCP Protocol (JSON-RPC over stdio)
    v
MCP Media Forge (Node.js on host)
    |
    |--- Diagrams: docker exec (sandboxed, no network)
    |       |
    |       v
    |   Rendering Container
    |     ├── mmdc       (Mermaid CLI + Chromium)
    |     ├── d2         (D2 diagrams)
    |     ├── dot/neato  (Graphviz)
    |     └── vl2svg     (Vega-Lite via vl-convert)
    |
    |--- HTML/Slides: template engine (no Docker)
    |       |
    |       v
    |   CSS Design System (4 themes, depth tiers, components)
    |
    v
docs/generated/
  mermaid-a1b2c3.svg
  d2-7f8e9a.svg
  html_page-d4e5f6.html
  slides-8b9c0d.html

Key design decisions:

  • Text in, file path out -- returns relative paths, never base64 blobs
  • Content-hash naming -- same input = same file = free caching + git-friendly
  • SVG preferred -- vector format, small files, diffs cleanly in git
  • Docker-contained -- diagram renderers run in a sandboxed container with network_mode: none
  • Self-contained HTML -- pages and slides have zero external dependencies (inline CSS/JS)
  • Input pre-validation -- catches common mistakes before Docker round-trips
  • Structured errors -- error responses include error_type, error_message, and suggestion to enable LLM self-correction

Tool Reference

get_tool_guide

Get usage guide for any tool before rendering. Returns examples, anti-patterns to avoid, complexity limits, and tips.

{ "tool_name": "mermaid" }

Available guides: mermaid, d2, graphviz, vegalite, html_page, slides, or all for a summary.

render_mermaid

{
  "code": "flowchart TD\n    A[Start] --> B{Decision}\n    B -->|Yes| C[Done]",
  "format": "svg",
  "theme": "default"
}
ParameterTypeDefaultDescription
codestringrequiredMermaid diagram code (must start with diagram type)
formatsvg | pngsvgOutput format
themedefault | dark | forest | neutraldefaultMermaid theme

Pre-validation catches: missing diagram type, semicolons, HTML in labels, >25 nodes.

render_d2

{
  "code": "client -> server -> database",
  "format": "svg",
  "layout": "dagre"
}
ParameterTypeDefaultDescription
codestringrequiredD2 diagram code
formatsvg | pngsvgOutput format
themenumber--Theme ID (0=default, 1=neutral-grey, 3=terminal)
layoutdagre | elk | taladagreLayout engine

Pre-validation catches: Mermaid/D2 syntax confusion, unbalanced braces, >3 nesting depth.

render_graphviz

{
  "dot_source": "digraph G { A -> B -> C }",
  "engine": "dot",
  "format": "svg"
}
ParameterTypeDefaultDescription
dot_sourcestringrequiredGraphviz DOT source code
enginedot | neato | fdp | sfdp | twopi | circodotLayout engine
formatsvg | pngsvgOutput format

Pre-validation catches: missing graph wrapper, -> in undirected graphs, unbalanced braces.

render_chart

{
  "spec_json": "{\"$schema\":\"https://vega.github.io/schema/vega-lite/v5.json\",\"data\":{\"values\":[{\"x\":1,\"y\":10}]},\"mark\":\"bar\",\"encoding\":{\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}}}",
  "format": "svg"
}
ParameterTypeDefaultDescription
spec_jsonstringrequiredVega-Lite JSON specification
formatsvg | pngsvgOutput format
scalenumber1Scale factor for PNG output

Pre-validation catches: invalid JSON, missing $schema/data/mark, >500 inline data rows.

render_html_page

Generates a self-contained themed HTML page. No Docker required.

{
  "title": "System Overview",
  "body_html": "<section id=\"metrics\"><h2>Metrics</h2><div class=\"mf-grid mf-grid-3\">...</div></section>",
  "theme": "swiss",
  "description": "Q1 architecture overview",
  "nav_sections": ["Metrics", "Architecture", "Roadmap"]
}
ParameterTypeDefaultDescription
titlestringrequiredPage title
body_htmlstringrequiredHTML body content (inner content only, no <html>/<head>/<body>)
themeswiss | midnight | warm | terminalswissVisual theme
descriptionstring--Page description (meta tag + header)
nav_sectionsstring[]--Section names for floating IntersectionObserver navigation

Design system CSS classes:

ClassPurpose
mf-heroPrimary highlight section (large shadow)
mf-elevatedSecondary highlight (medium shadow)
mf-cardBordered content card
mf-recessedDe-emphasized content
mf-grid mf-grid-2Responsive 2-column grid
mf-grid mf-grid-3Responsive 3-column grid
mf-splitTwo equal columns
mf-kpi + mf-kpi-value + mf-kpi-labelKey metric display
mf-badge-success/warning/error/infoStatus badges

Themes:

ThemeStyleBest for
swissWhite, geometric, blue accentTechnical docs
midnightDeep navy, serif, gold accentPresentations
warmCream paper, bold sans, terracottaReports
terminalDark, monospace, cyan accentDeveloper content

render_slides

Generates a self-contained HTML slide deck with keyboard/touch navigation. No Docker required.

{
  "title": "Q1 Review",
  "slides": "[{\"title\":\"Q1 Review\",\"content\":\"Engineering update\",\"type\":\"title\"},{\"title\":\"Metrics\",\"content\":\"<ul><li>99.9% uptime</li></ul>\",\"type\":\"content\"}]",
  "theme": "midnight",
  "author": "Engineering Team"
}
ParameterTypeDefaultDescription
titlestringrequiredPresentation title
slidesstringrequiredJSON array of slide objects
themeswiss | midnight | warm | terminalswissVisual theme
authorstring--Author (shown on title slide)

Slide types:

TypeLayoutBest for
titleCentered large text + subtitleOpening/closing slides
sectionCentered heading + descriptionTopic dividers
contentHeading + body (bullets, text)Most content
splitHeading + two columnsBefore/after, comparisons
codeHeading + code blockCode walkthroughs
quoteLarge blockquote + attributionTestimonials, key quotes
kpiHeading + auto-grid metricsDashboards, stats
imageHeading + centered imageScreenshots, diagrams

Navigation: Arrow keys, Space, PageUp/PageDown, Home/End. Touch: swipe left/right. Click dots to jump.

list_assets

{ "directory": "" }

Returns a JSON array of all generated files with name, path, size, and modification time.

Error Handling

All tools return structured errors that help LLMs self-correct:

{
  "status": "error",
  "error_type": "syntax_error",
  "error_message": "First line must declare diagram type. Got: \"A --> B\"",
  "suggestion": "Start with: flowchart TD, sequenceDiagram, erDiagram, ... See https://mermaid.js.org/syntax/"
}

Error types: syntax_error, rendering_error, dependency_missing.

Pre-validation catches common LLM mistakes before hitting the renderer:

  • Mermaid: missing diagram type, semicolons, HTML tags, legacy graph syntax
  • D2: Mermaid syntax confusion (-->, subgraph), unbalanced braces
  • Graphviz: missing digraph/graph wrapper, -> in undirected graphs
  • Vega-Lite: invalid JSON, missing required fields, oversized inline data

Environment Variables

VariableDefaultDescription
PROJECT_ROOTcwd()Project root for output path resolution
OUTPUT_DIRdocs/generatedOutput directory relative to PROJECT_ROOT
MEDIA_FORGE_CONTAINERmedia-forge-rendererDocker container name

Development

npm install
npm run build          # Build with tsup
npm run dev            # Watch mode
npm test               # Run all tests (95 total)
npm run test:unit      # Unit tests only (no Docker needed)
npm run test:component # Integration tests (Docker tools need container)
npm run lint           # Type-check with tsc

Running integration tests

cd docker && docker compose up -d   # Start renderer (diagram tools only)
cd .. && npm run test:component     # All integration tests

HTML page and slide integration tests run without Docker.

Examples

See examples/ for sample input files:

FileToolDescription
mermaid/flowchart.mmdrender_mermaidDecision flowchart
mermaid/sequence.mmdrender_mermaidClient-server sequence
d2/architecture.d2render_d2Backend architecture with containers
graphviz/dependencies.dotrender_graphviznpm dependency graph
vegalite/bar-chart.jsonrender_chartTool performance comparison

See examples/README.md for MCP tool call examples and expected responses.

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Documents & KnowledgeMedia & Entertainment
Registryactive
Packagemcp-media-forge
TransportSTDIO
UpdatedMar 11, 2026
View on GitHub

Related Documents & Knowledge MCP Servers

View all →
Pdf Document Mcp

csoai-org/pdf-document-mcp

pdf-document-mcp MCP server by MEOK AI Labs
Mcp Document Converter

xt765/mcp-document-converter

Convert PDF, DOCX, HTML, Markdown, and Text for AI assistant context injection.
10
Markdown Formatter

io.github.xjtlumedia/markdown-formatter

AI Answer Copier — Convert Markdown to PDF, DOCX, HTML, LaTeX, CSV, JSON, XML, XLSX, RTF, PNG
3
Better Notion

io.github.ai-aviate/better-notion

Operate Notion with a single Markdown document — read, create, and update pages in one call.
2
Notion

suekou/mcp-notion-server

Notion MCP Server enables LLMs to access Notion workspaces with optional Markdown conversion to save tokens.
892
Docx

meterlong/mcp-doc

A powerful Word document processing service based on FastMCP, enabling AI assistants to create, edit, and manage docx files with full formatting support. Preserves original styles when editing content. 基于FastMCP的强大Word文档处理服务,使AI助手能够创建、编辑和管理docx文件,支持完整的格式设置功能。在编辑内容时能够保留原始样式和格式,实现精确的文档操作。
185