Skip to content

chore: add chatmcp.yaml #15

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 21, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions chatmcp.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
params:
type: object
properties:
QINIU_ACCESS_KEY:
type: string
description: The access key for your Qiniu account.
QINIU_SECRET_KEY:
type: string
description: The secret key for your Qiniu account.
QINIU_REGION_NAME:
type: string
description: The region name for your config of Qiniu buckets.
QINIU_ENDPOINT_URL:
type: string
description: The endpoint URL for your config of Qiniu buckets. eg:https://s3.your_region.qiniucs.com.
QINIU_BUCKETS:
type: string
description: The buckets of Qiniu, If there are multiple extra items, separate them with commas. eg:bucket1,bucket2.
required:
- QINIU_ACCESS_KEY
- QINIU_SECRET_KEY
- QINIU_REGION_NAME
- QINIU_ENDPOINT_URL
- QINIU_BUCKETS

uvx:
command:
| uvx qiniu-mcp-server
config:
| {
"mcpServers": {
"qiniu-mcp-server": {
"command": "uvx",
"args": [
"qiniu-mcp-server"
],
"env": {
"QINIU_ACCESS_KEY": "YOUR QINIU ACCESS KEY",
"QINIU_SECRET_KEY": "YOUR QINIU SECRET KEY",
"QINIU_REGION_NAME": "YOUR QINIU REGION NAME",
"QINIU_ENDPOINT_URL": "YOUR QINIU ENDPOINT URL"
}
}
}
}
Loading