MCP.so
登录

tech.unravel/mcp-mermaidjs-server

@unravel-team

关于 tech.unravel/mcp-mermaidjs-server

An MCP server for working with MermaidJS, using `mmdc`.

基本信息

分类

其他

许可证

MIT license

运行时

makefile

传输方式

stdio

发布者

unravel-team

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "mcp-mermaidjs-server": {
      "command": "npx",
      "args": [
        "@modelcontextprotocol/inspector",
        "java",
        "-Dclojure.tools.logging.factory=clojure.tools.logging.impl/log4j2-factory",
        "-Dorg.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.Slf4jLog",
        "-Dlog4j2.contextSelector=org.apache.logging.log4j.core.async.AsyncLoggerContextSelector",
        "-Dlog4j2.configurationFile=log4j2-mcp.xml",
        "-Dbabashka.json.provider=metosin/jsonista",
        "-Dlogging.level=INFO",
        "-Dmcp.vegalite.mmdc_executable=/Users/vedang/.local/share/nvm/v23.11.0/bin/mmdc",
        "-cp",
        "/Users/vedang/repo-name/target/tech.unravel/mcp-mermaidjs-server-1.0.0.jar",
        "tech.unravel.mcp-mermaidjs-server"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is tech.unravel/mcp-mermaidjs-server?

An MCP server for working with MermaidJS diagrams, using the mmdc CLI tool. It provides two tools—save-diagram and visualize-diagram—so an AI host can create a Mermaid spec, save it, then render it to a specific output format with optional custom CSS. It is built in Clojure and packaged as an uberjar.

How to use tech.unravel/mcp-mermaidjs-server?

Pre‑requisite: the mmdc CLI must be installed. Build the uberjar with make clean && make build, then configure the server in Claude Desktop or MCP Inspector using the provided JSON with the full path to the JAR and the mmdc executable.

Key features of tech.unravel/mcp-mermaidjs-server

  • Provides two tools: save-diagram and visualize-diagram
  • Renders Mermaid specs via mmdc CLI
  • Supports custom output format and optional CSS
  • Built with Clojure, runs as a Java process
  • Integrates with Claude Desktop and MCP Inspector

Use cases of tech.unravel/mcp-mermaidjs-server

  • Create and save a MermaidJS sequence diagram from a textual spec
  • Render a saved spec to a specific image format with optional styling
  • Automate diagram generation within an AI‑assisted workflow

FAQ from tech.unravel/mcp-mermaidjs-server

What does the server do?

It is an MCP server that wraps mmdc to let an AI host create, save, and render MermaidJS diagrams.

What are the prerequisites?

The mmdc CLI must be installed on the system before running the server.

How do I install the server?

Build the uberjar by running make clean && make build, then configure the full path to the JAR and to mmdc in your MCP client.

What output formats are supported?

The server delegates rendering to mmdc, which supports multiple output formats such as PNG, SVG, and PDF (the exact list depends on the mmdc installation and configuration).

Where are diagrams stored?

Diagrams are saved as .mmd files on the local filesystem; the save-diagram tool writes the spec to disk, and visualize-diagram reads that file to render it.

评论

其他 分类下的更多 MCP 服务器