Skip to content

Commit 834ace5

Browse files
YangSen-qnYangSen-qn
and
YangSen-qn
authored
chore: add chatmcp.yaml (#15)
Co-authored-by: YangSen-qn <[email protected]>
1 parent 52434dc commit 834ace5

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

chatmcp.yaml

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
params:
2+
type: object
3+
properties:
4+
QINIU_ACCESS_KEY:
5+
type: string
6+
description: The access key for your Qiniu account.
7+
QINIU_SECRET_KEY:
8+
type: string
9+
description: The secret key for your Qiniu account.
10+
QINIU_REGION_NAME:
11+
type: string
12+
description: The region name for your config of Qiniu buckets.
13+
QINIU_ENDPOINT_URL:
14+
type: string
15+
description: The endpoint URL for your config of Qiniu buckets. eg:https://s3.your_region.qiniucs.com.
16+
QINIU_BUCKETS:
17+
type: string
18+
description: The buckets of Qiniu, If there are multiple extra items, separate them with commas. eg:bucket1,bucket2.
19+
required:
20+
- QINIU_ACCESS_KEY
21+
- QINIU_SECRET_KEY
22+
- QINIU_REGION_NAME
23+
- QINIU_ENDPOINT_URL
24+
- QINIU_BUCKETS
25+
26+
uvx:
27+
command:
28+
| uvx qiniu-mcp-server
29+
config:
30+
| {
31+
"mcpServers": {
32+
"qiniu-mcp-server": {
33+
"command": "uvx",
34+
"args": [
35+
"qiniu-mcp-server"
36+
],
37+
"env": {
38+
"QINIU_ACCESS_KEY": "YOUR QINIU ACCESS KEY",
39+
"QINIU_SECRET_KEY": "YOUR QINIU SECRET KEY",
40+
"QINIU_REGION_NAME": "YOUR QINIU REGION NAME",
41+
"QINIU_ENDPOINT_URL": "YOUR QINIU ENDPOINT URL"
42+
}
43+
}
44+
}
45+
}

0 commit comments

Comments
 (0)