Qiniu Cloud Storage MCP Server
Supports loading environment variables from .env files to configure the Qiniu Cloud Storage connection details securely without hardcoding sensitive credentials.
Provides a Python client interface for uploading files to Qiniu Cloud Storage, with examples showing how to use the MCP client in Python applications.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Qiniu Cloud Storage MCP Serverupload my presentation slides from /home/user/slides.pdf"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
七牛云存储 MCP 服务
用于上传文件到七牛云存储的MCP服务
安装指南
克隆仓库
创建并激活虚拟环境:
python3 -m venv venv source venv/bin/activate安装依赖:
pip install -r requirements.txt配置环境变量:
export QINIU_ACCESS_KEY="你的AccessKey" export QINIU_SECRET_KEY="你的SecretKey" export QINIU_BUCKET_NAME="joemarkdown" export QINIU_DOMAIN="https://img.t5t6.com"启动服务:
python server.py
Related MCP server: Tencent Cloud COS MCP Server
配置说明
复制示例配置文件:
cp .env.example .env编辑
.env文件填写你的七牛云凭证切勿将
.env文件提交到版本控制
示例.env内容:
QINIU_ACCESS_KEY=你的AccessKey
QINIU_SECRET_KEY=你的SecretKey
QINIU_BUCKET_NAME=你的存储空间名称
QINIU_DOMAIN=https://你的域名使用方法
克隆项目后首次运行:
# 进入项目目录
cd qiniu_mcp_server
# 创建虚拟环境
python3 -m venv venv
# 激活环境 (Linux/Mac)
source venv/bin/activate
# 安装依赖
pip install -r requirements.txt
# 复制并配置.env文件
cp .env.example .env
nano .env # 编辑填入你的七牛云凭证
# 启动服务
python server.py日常使用:
cd qiniu_mcp_server
source venv/bin/activate # 激活环境
python server.py # 启动服务调用上传接口示例:
from mcp import McpClient
client = McpClient("qiniu_mcp")
url = client.use_tool("upload_file", {
"file_path": "/path/to/your/file.jpg"
})
print("文件URL:", url)服务提供以下工具:
upload_file(file_path: str) -> str: 上传文件并返回公开访问URL
Trae 集成配置
在Trae的配置文件中添加以下内容(请替换实际路径和凭证):
{
"mcpServers": {
"qiniu_mcp": {
"command": "python",
"args": [
"/path/to/qiniu_mcp_server/server.py"
],
"env": {
"QINIU_ACCESS_KEY": "你的AccessKey",
"QINIU_SECRET_KEY": "你的SecretKey",
"QINIU_BUCKET_NAME": "你的存储空间名称",
"QINIU_DOMAIN": "https://你的域名"
}
}
}
}注意: 实际使用时请确保:
替换
/path/to/为实际服务器路径使用真实的凭证信息替换示例值
妥善保管凭证信息
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
AlicenseBqualityDmaintenanceThe Model Context Protocol (MCP) Server built on Qiniu Cloud products supports users in accessing Qiniu Cloud Storage, intelligent multimedia services, and more through this MCP Server within the context of AI large model clients.Last updated2238MIT- AlicenseCqualityFmaintenanceA server based on MCP protocol that allows large language models to directly access Tencent Cloud Object Storage (COS) and Cloud Infinite (CI) services without coding, enabling file storage, retrieval, and processing operations.Last updated1818438MIT
- Alicense-qualityDmaintenanceAn MCP server that enables users to upload local files to S3-compatible storage and retrieve shareable public URLs. Files are automatically organized into unique UUID-based folders to prevent naming conflicts while preserving original filenames.Last updated21MIT
- FlicenseCqualityDmaintenanceA FastMCP-based server that enables uploading text and base64-encoded content to MinIO object storage through an HTTP transport. It supports automated bucket management and secure file path generation to streamline remote storage operations.Last updated
Related MCP Connectors
MCP server for Appcircle mobile CI/CD platform.
MCP server for the FFmpeg Micro video transcoding API — create, monitor, download transcodes.
MCP server for interacting with the Supabase platform
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/joeseesun/qiniu-mcp-joe'
If you have feedback or need assistance with the MCP directory API, please join our Discord server