Tencent Cloud COS MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| COS_BUCKET | Yes | 存储桶名称 | |
| COS_DOMAIN | No | 自定义域名 (可选) | |
| COS_REGION | Yes | COS 地域 (例如: ap-beijing, ap-shanghai) | |
| COS_SECRET_ID | Yes | 腾讯云 Secret ID | |
| COS_SECRET_KEY | Yes | 腾讯云 Secret Key |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| upload_fileC | 上传单个文件到腾讯云COS |
| upload_multipleC | 批量上传多个文件到腾讯云COS |
| get_signed_urlC | 获取COS对象的临时签名URL |
| list_objectsC | 列出COS中的对象 |
| delete_objectC | 删除COS中的对象 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose with no overlap: delete_object removes objects, get_signed_url generates URLs, list_objects retrieves object lists, upload_file handles single uploads, and upload_multiple handles batch uploads. The descriptions clearly differentiate between object management, access control, and upload operations.
All tools follow a consistent verb_noun pattern in snake_case (e.g., delete_object, get_signed_url, list_objects). The naming is predictable and uniform across all five tools, making them easy to identify and use.
Five tools is a reasonable number for a COS (Cloud Object Storage) server, covering core operations like listing, uploading, deleting, and accessing objects. It's slightly lean but functional; minor additions like object metadata retrieval could enhance it without being necessary.
The toolset covers essential CRUD-like operations for object storage: create (upload_file/upload_multiple), read (list_objects, get_signed_url), and delete (delete_object). A minor gap is the lack of an update or copy tool for modifying existing objects, but agents can work around this by re-uploading.