Skip to content

Commit 67c5d6c

Browse files
committed
chore: update command
1 parent 9014c03 commit 67c5d6c

File tree

2 files changed

+90
-68
lines changed

2 files changed

+90
-68
lines changed

mcp-registry/servers/[email protected]

Lines changed: 0 additions & 68 deletions
This file was deleted.
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
{
2+
"display_name": "Qiniu MCP Server",
3+
"license": "<UNKNOWN>",
4+
"tags": [
5+
"qiniu",
6+
"cloud storage",
7+
"file upload",
8+
"MCP",
9+
"python"
10+
],
11+
"installations": {
12+
"python": {
13+
"type": "python",
14+
"command": "python",
15+
"args": [
16+
"/path/to/qiniu_mcp_server/server.py"
17+
],
18+
"description": "Run the qiniu MCP server directly with Python",
19+
"env": {
20+
"QINIU_ACCESS_KEY": "${QINIU_ACCESS_KEY}",
21+
"QINIU_SECRET_KEY": "${QINIU_SECRET_KEY}",
22+
"QINIU_BUCKET_NAME": "${QINIU_BUCKET_NAME}",
23+
"QINIU_DOMAIN": "${QINIU_DOMAIN}"
24+
}
25+
}
26+
},
27+
"arguments": {
28+
"QINIU_ACCESS_KEY": {
29+
"description": "Qiniu Access Key",
30+
"required": true,
31+
"example": "your_access_key"
32+
},
33+
"QINIU_SECRET_KEY": {
34+
"description": "Qiniu Secret Key",
35+
"required": true,
36+
"example": "your_secret_key"
37+
},
38+
"QINIU_BUCKET_NAME": {
39+
"description": "Qiniu Bucket Name",
40+
"required": true,
41+
"example": "your_bucket_name"
42+
},
43+
"QINIU_DOMAIN": {
44+
"description": "Qiniu Domain",
45+
"required": true,
46+
"example": "your_domain_name"
47+
}
48+
},
49+
"examples": [
50+
{
51+
"title": "",
52+
"description": "",
53+
"prompt": "Upload an image to Qiniu"
54+
},
55+
{
56+
"title": "",
57+
"description": "",
58+
"prompt": "How to upload a file to Qiniu storage?"
59+
},
60+
{
61+
"title": "",
62+
"description": "",
63+
"prompt": "How to use MCP server to upload files?"
64+
},
65+
{
66+
"title": "",
67+
"description": "",
68+
"prompt": "Upload file and get public URL"
69+
},
70+
{
71+
"title": "",
72+
"description": "",
73+
"prompt": "How to deploy Qiniu MCP server in Traefik?"
74+
}
75+
],
76+
"name": "qiniu-mcp-joe",
77+
"repository": {
78+
"type": "git",
79+
"url": "https://github.com/joeseesun/qiniu-mcp-joe"
80+
},
81+
"homepage": "https://github.com/joeseesun/qiniu-mcp-joe",
82+
"author": {
83+
"name": "joeseesun"
84+
},
85+
"description": "Edit `.env` file and fill in your Qiniu credentials",
86+
"categories": [
87+
"Dev Tools"
88+
],
89+
"is_official": false
90+
}

0 commit comments

Comments
 (0)