Skip to content

Commit 43fe20d

Browse files
feat: add manifest for hustcc-mcp-mermaid
Generated manifest JSON for repository: https://github.com/hustcc/mcp-mermaid Co-Authored-By: Lucien
1 parent e19dfff commit 43fe20d

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
{
2+
"name": "@hustcc/mcp-mermaid",
3+
"display_name": "mcp-mermaid",
4+
"description": "Generate mermaid diagram and chart with AI MCP dynamically.",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/hustcc/mcp-mermaid"
8+
},
9+
"homepage": "https://github.com/hustcc/mcp-mermaid",
10+
"author": {
11+
"name": "hustcc"
12+
},
13+
"license": "MIT",
14+
"categories": [
15+
"Dev Tools",
16+
"Media Creation"
17+
],
18+
"tags": [
19+
"mcp",
20+
"mcp-server",
21+
"mermaid"
22+
],
23+
"arguments": {
24+
"MERMAID_DEFINITION": {
25+
"description": "The mermaid diagram definition.",
26+
"required": true,
27+
"example": "graph TD; A-->B;"
28+
}
29+
},
30+
"tools": [],
31+
"resources": [],
32+
"prompts": [],
33+
"installations": {
34+
"npm": {
35+
"type": "npm",
36+
"command": "npx",
37+
"args": [
38+
"-y",
39+
"@hustcc/mcp-mermaid"
40+
],
41+
"package": "@hustcc/mcp-mermaid",
42+
"description": "Run the server using npx. You can customize the port with the `MERMAID_PORT` environment variable. For example: `MERMAID_PORT=8080 npx -y @hustcc/mcp-mermaid`.",
43+
"recommended": true,
44+
"env": {
45+
"MERMAID_PORT": "The port number for the server to listen on. Defaults to 7001."
46+
}
47+
},
48+
"docker": {
49+
"type": "docker",
50+
"command": "docker",
51+
"args": [
52+
"run",
53+
"-p",
54+
"7001:7001",
55+
"hustcc/mcp-mermaid:latest"
56+
],
57+
"description": "Run the server using Docker. You can customize the port with the `MERMAID_PORT` environment variable and map it accordingly. For example: `docker run -p 8080:8080 -e MERMAID_PORT=8080 hustcc/mcp-mermaid:latest`.",
58+
"env": {
59+
"MERMAID_PORT": "The port number for the server to listen on inside the container. Defaults to 7001."
60+
}
61+
}
62+
},
63+
"is_official": false,
64+
"is_archived": false
65+
}

0 commit comments

Comments
 (0)