Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ mermkit bridges this gap. It takes Mermaid source and produces the right artifac

```bash
# npm — global install
npm install -g @mermkit/cli
npm install -g @mermkit/cli@latest

# npx — run without installing
npx @mermkit/cli render --in diagram.mmd --out diagram.svg
npx @mermkit/cli@latest render --in diagram.mmd --out diagram.svg

# pip — Python wrapper
pip install mermkit
Expand Down Expand Up @@ -203,7 +203,7 @@ mermkit ships an MCP server over stdio. Any MCP-compatible host can use it direc
"mcpServers": {
"mermkit": {
"command": "npx",
"args": ["-y", "@mermkit/cli@0.2.3", "mcp"]
"args": ["-y", "@mermkit/cli@latest", "mcp"]
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -468,11 +468,11 @@ <h2>Install</h2>

<div class="install-block">
<div class="install-label">npm</div>
<pre><code>npm install -g @mermkit/cli</code></pre>
<pre><code>npm install -g @mermkit/cli@latest</code></pre>
</div>
<div class="install-block">
<div class="install-label">npx</div>
<pre><code>npx @mermkit/cli render --in diagram.mmd --out diagram.svg</code></pre>
<pre><code>npx @mermkit/cli@latest render --in diagram.mmd --out diagram.svg</code></pre>
</div>
<div class="install-block">
<div class="install-label">pip</div>
Expand All @@ -493,15 +493,15 @@ <h2>MCP setup</h2>

<div class="install-block">
<div class="install-label">command</div>
<pre><code>npx -y @mermkit/cli mcp</code></pre>
<pre><code>npx -y @mermkit/cli@latest mcp</code></pre>
</div>
<div class="install-block">
<div class="install-label">MCP host config</div>
<pre><code>{
"mcpServers": {
"mermkit": {
"command": "npx",
"args": ["-y", "@mermkit/cli", "mcp"]
"args": ["-y", "@mermkit/cli@latest", "mcp"]
}
}
}</code></pre>
Expand Down
Loading