Skip to content

Commit 4e130c3

Browse files
committed
feat: add manifest for hustcc-mcp-mermaid
Generated manifest JSON for repository: https://github.com/hustcc/mcp-mermaid Co-Authored-By: Lucien
1 parent 4551fca commit 4e130c3

File tree

1 file changed

+98
-0
lines changed

1 file changed

+98
-0
lines changed
Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
{
2+
"name": "mcp-mermaid",
3+
"display_name": "MCP Mermaid Server",
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+
"email": "[email protected]"
13+
},
14+
"license": "MIT",
15+
"categories": [
16+
"Media Creation",
17+
"Dev Tools"
18+
],
19+
"tags": [
20+
"mermaid"
21+
],
22+
"arguments": {},
23+
"tools": [
24+
{
25+
"name": "generate_mermaid_diagram",
26+
"description": "Generate mermaid diagram and chart with mermaid syntax dynamically. Mermaid is a JavaScript based diagramming and charting tool that uses Markdown-inspired text definitions and a renderer to create and modify complex diagrams. The main purpose of Mermaid is to help documentation catch up with development.",
27+
"inputSchema": {
28+
"type": "object",
29+
"properties": {
30+
"mermaid": {
31+
"type": "string",
32+
"minLength": 1,
33+
"description": "The mermaid diagram syntax used to be generated, such as, graph TD;\nA-->B;\nA-->C;\nB-->D;\nC-->D;."
34+
},
35+
"theme": {
36+
"type": "string",
37+
"enum": [
38+
"default",
39+
"base",
40+
"forest",
41+
"dark",
42+
"neutral"
43+
],
44+
"description": "Theme for the diagram (optional). Default is 'default'.",
45+
"default": "default"
46+
},
47+
"backgroundColor": {
48+
"type": "string",
49+
"description": "Background color for the diagram (optional). Default is 'white'.",
50+
"default": "white"
51+
},
52+
"outputType": {
53+
"type": "string",
54+
"enum": [
55+
"png",
56+
"svg",
57+
"mermaid"
58+
],
59+
"description": "The output type of the diagram. Can be 'png', 'svg' or 'mermaid'. Default is 'png'.",
60+
"default": "png"
61+
}
62+
},
63+
"required": [
64+
"mermaid"
65+
]
66+
}
67+
}
68+
],
69+
"resources": [],
70+
"prompts": [],
71+
"installations": {
72+
"npm": {
73+
"type": "npm",
74+
"command": "npx",
75+
"args": [
76+
"-y",
77+
"mcp-mermaid"
78+
],
79+
"description": "Run the server directly using npx.",
80+
"recommended": true
81+
}
82+
},
83+
"examples": [
84+
{
85+
"title": "Flowchart Example",
86+
"description": "Generate a flowchart for a login process with username and password.",
87+
"prompt": "flowchart for login with username and password"
88+
},
89+
{
90+
"title": "Sequence Diagram Example",
91+
"description": "Generate a sequence diagram showing the interaction between a user, a browser, and a server.",
92+
"prompt": "sequence diagram for user login in browser and server"
93+
}
94+
],
95+
"is_official": false,
96+
"is_archived": false,
97+
"docker_url": "https://hub.docker.com/r/hustcc/mcp-mermaid"
98+
}

0 commit comments

Comments
 (0)