File tree Expand file tree Collapse file tree 1 file changed +94
-0
lines changed Expand file tree Collapse file tree 1 file changed +94
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "name" : " @mcp/mermaid-server" ,
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+ "author" : {
10+ "name" : " hustcc" ,
11+ 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+ "API_KEY" : {
25+ "description" : " OpenAI API Key." ,
26+ "required" : true ,
27+ "example" : " sk-xxx"
28+ },
29+ "BASE_URL" : {
30+ "description" : " OpenAI API base url. Default: https://api.openai.com/v1." ,
31+ "required" : false ,
32+ "example" : " https://api.openai.com/v1"
33+ },
34+ "MODEL" : {
35+ "description" : " Model name. Default: gpt-4-turbo." ,
36+ "required" : false ,
37+ "example" : " gpt-4-turbo"
38+ }
39+ },
40+ "tools" : [
41+ {
42+ "name" : " Diagram" ,
43+ "description" : " Generate mermaid diagram and chart."
44+ }
45+ ],
46+ "resources" : [],
47+ "prompts" : [],
48+ "installations" : {
49+ "uvx" : {
50+ "type" : " uvx" ,
51+ "command" : " uvx" ,
52+ "args" : [
53+ " @mcp/mermaid-server" ,
54+ " --port" ,
55+ " 8000"
56+ ],
57+ "description" : " Run with uvx"
58+ },
59+ "npm" : {
60+ "type" : " npm" ,
61+ "command" : " npx" ,
62+ "args" : [
63+ " -y" ,
64+ " @mcp/mermaid-server" ,
65+ " --port" ,
66+ " 8000"
67+ ],
68+ "description" : " Run with npx" ,
69+ "recommended" : true
70+ },
71+ "docker" : {
72+ "type" : " docker" ,
73+ "command" : " docker" ,
74+ "args" : [
75+ " run" ,
76+ " -p" ,
77+ " 8000:8000" ,
78+ " -e" ,
79+ " API_KEY=sk-xxx" ,
80+ " hustcc/mcp-mermaid-server:latest"
81+ ],
82+ "description" : " Run with docker"
83+ }
84+ },
85+ "examples" : [
86+ {
87+ "title" : " Flowchart Example" ,
88+ "description" : " An example of generating a flowchart." ,
89+ "prompt" : " Please draw a flowchart about the process of making a cup of coffee."
90+ }
91+ ],
92+ "is_official" : false ,
93+ "is_archived" : false
94+ }
You can’t perform that action at this time.
0 commit comments