-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathhustcc-mcp-mermaid.json
More file actions
94 lines (94 loc) · 1.99 KB
/
Copy pathhustcc-mcp-mermaid.json
File metadata and controls
94 lines (94 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@mcp/mermaid-server",
"display_name": "MCP Mermaid Server",
"description": "Generate mermaid diagram and chart with AI MCP dynamically.",
"repository": {
"type": "git",
"url": "https://github.com/hustcc/mcp-mermaid"
},
"author": {
"name": "hustcc",
"email": "i@hust.cc"
},
"license": "MIT",
"categories": [
"Dev Tools",
"Media Creation"
],
"tags": [
"mcp",
"mcp-server",
"mermaid"
],
"arguments": {
"API_KEY": {
"description": "OpenAI API Key.",
"required": true,
"example": "sk-xxx"
},
"BASE_URL": {
"description": "OpenAI API base url. Default: https://api.openai.com/v1.",
"required": false,
"example": "https://api.openai.com/v1"
},
"MODEL": {
"description": "Model name. Default: gpt-4-turbo.",
"required": false,
"example": "gpt-4-turbo"
}
},
"tools": [
{
"name": "Diagram",
"description": "Generate mermaid diagram and chart."
}
],
"resources": [],
"prompts": [],
"installations": {
"uvx": {
"type": "uvx",
"command": "uvx",
"args": [
"@mcp/mermaid-server",
"--port",
"8000"
],
"description": "Run with uvx"
},
"npm": {
"type": "npm",
"command": "npx",
"args": [
"-y",
"@mcp/mermaid-server",
"--port",
"8000"
],
"description": "Run with npx",
"recommended": true
},
"docker": {
"type": "docker",
"command": "docker",
"args": [
"run",
"-p",
"8000:8000",
"-e",
"API_KEY=sk-xxx",
"hustcc/mcp-mermaid-server:latest"
],
"description": "Run with docker"
}
},
"examples": [
{
"title": "Flowchart Example",
"description": "An example of generating a flowchart.",
"prompt": "Please draw a flowchart about the process of making a cup of coffee."
}
],
"is_official": false,
"is_archived": false
}