Tencent Cloud COS MCP
MCP ServerFree** - Quickly integrate with Tencent Cloud Storage (COS) and Data Processing (CI) capabilities powered
Capabilities10 decomposed
mcp-compliant cloud storage tool registration and invocation
Medium confidenceRegisters Tencent Cloud COS operations as standardized MCP tools that LLM clients can discover and invoke through the Model Context Protocol. The server implements the @modelcontextprotocol/sdk interface, mapping service layer methods to MCP tool schemas with automatic parameter validation and response serialization. This enables any MCP-compatible LLM (Claude, local models via MCP clients) to perform cloud operations without custom SDK integration code.
Implements a layered service-to-MCP mapping architecture (src/server.ts → src/services/*) that decouples Tencent Cloud SDK calls from MCP protocol concerns, allowing service methods to be registered as tools without modifying business logic. Uses declarative tool registration pattern rather than code generation.
Provides native MCP compliance without requiring developers to write custom MCP wrappers, unlike REST API wrappers that need additional MCP adapter layers
object storage operations with bucket-scoped access control
Medium confidenceExposes Tencent Cloud COS putObject, getObject, and getBucket operations through the cosService layer, which wraps the cos-nodejs-sdk-v5 client with bucket and region configuration. Supports file upload, download, and bucket listing with automatic credential management via SecretId/SecretKey. The service layer handles SDK initialization, error translation, and response normalization for MCP clients.
Wraps cos-nodejs-sdk-v5 with a service layer (src/services/cosService.ts) that normalizes Tencent Cloud SDK responses into MCP-compatible JSON structures, handling credential injection and bucket configuration at initialization time rather than per-request.
Simpler than direct SDK usage for LLM agents because it abstracts authentication and bucket context, but less flexible than raw SDK access for advanced COS features like multipart uploads or lifecycle policies
ai-powered image quality assessment and enhancement
Medium confidenceIntegrates Tencent Cloud CI (Cloud Infinite) AI image processing capabilities through the ciAIService layer, exposing assessQuality and aiSuperResolution operations. The service calls Tencent's AI models to analyze image quality metrics (blur, noise, contrast) and perform upscaling with neural networks. Results are returned as structured JSON with quality scores and enhanced image URLs or binary content.
Leverages Tencent Cloud's proprietary AI models for image quality analysis and super-resolution, integrated through the CI service API rather than open-source models, providing production-grade accuracy tuned for Chinese content and use cases.
More accurate than generic open-source image quality metrics (BRISQUE, NIQE) for Tencent Cloud users because models are trained on Tencent's data, but requires Tencent Cloud infrastructure and adds cloud API latency vs local processing
document-to-pdf conversion with format preservation
Medium confidenceExposes Tencent Cloud CI document processing capabilities through ciDocService, supporting createDocToPdfJob and describeDocProcessJob operations. The service submits document conversion jobs (Word, Excel, PowerPoint, etc.) to Tencent's backend processors and polls for completion status. Converted PDFs are stored in COS and accessible via returned URLs, with metadata about conversion success and page counts.
Implements asynchronous job submission pattern (src/services/ciDocService.ts) where conversion requests return job IDs for polling, rather than synchronous conversion, enabling scalable batch processing without blocking LLM agent execution.
Handles complex office document formats more reliably than open-source converters (LibreOffice, pandoc) because it uses Tencent's native document parsing engines, but introduces async latency and requires polling for job completion
video thumbnail and smart cover generation
Medium confidenceIntegrates Tencent Cloud CI media processing through ciMediaService, exposing createMediaSmartCoverJob and describeMediaJob operations. The service submits video files to Tencent's AI-powered thumbnail extraction pipeline, which analyzes video frames and selects optimal cover images based on scene detection and composition analysis. Results include cover image URLs and metadata about selected frames.
Uses Tencent's proprietary AI scene detection and composition analysis to select optimal cover frames, integrated as an async job pipeline (src/services/ciMediaService.ts) that returns cover image URLs rather than raw frame data.
More intelligent than frame extraction at fixed intervals (e.g., 50% duration) because it analyzes scene composition and content relevance, but requires async job submission and polling unlike synchronous thumbnail extraction libraries
image metadata extraction and watermarking
Medium confidenceExposes basic image operations through ciPicService, including imageInfo for metadata extraction and waterMarkFont for adding text watermarks. The imageInfo operation calls Tencent CI to extract EXIF data, dimensions, color space, and format information. The waterMarkFont operation applies text overlays with configurable position, font, size, and opacity, returning watermarked image URLs or binary content.
Provides lightweight image metadata extraction and watermarking through Tencent CI's image operation APIs, implemented as simple synchronous operations (src/services/ciPicService.ts) without job submission, enabling fast metadata queries and watermark application.
Simpler than running local image processing libraries (PIL, ImageMagick) because it offloads computation to Tencent Cloud, but adds network latency and requires COS integration vs local file access
content-based image search with mateinsight integration
Medium confidenceIntegrates Tencent Cloud MateInsight smart search capabilities through ciMateInsightService, exposing imageSearchPic and imageSearchText operations. The service enables searching image databases by visual similarity (image-to-image search) or semantic meaning (text-to-image search). MateInsight uses deep learning embeddings to match query images or text descriptions against indexed image collections, returning ranked results with similarity scores.
Leverages Tencent's proprietary MateInsight deep learning embeddings for semantic image search, supporting both visual similarity (image-to-image) and semantic matching (text-to-image) through a unified API (src/services/ciMateInsightService.ts), rather than traditional keyword-based image search.
More semantically accurate than keyword-based image search or simple pixel-level similarity matching because it uses learned visual embeddings, but requires pre-indexing and Tencent Cloud infrastructure vs local CBIR libraries
qr code generation and recognition
Medium confidenceExposes Tencent Cloud CI QR code operations through ciAIService, including aiQrcode for generating QR codes from text or URLs. The service encodes input data into QR code images with configurable error correction levels and output formats. Generated QR codes are returned as image URLs or binary content, suitable for embedding in documents or displaying in UIs.
Provides QR code generation as a synchronous image operation through Tencent CI, integrated into the ciAIService layer alongside other AI image operations, enabling LLM agents to generate trackable codes without external QR libraries.
Simpler than local QR code libraries (qrcode.js, python-qrcode) because it offloads generation to cloud infrastructure, but adds network latency and requires Tencent Cloud integration vs client-side generation
multi-service configuration and credential management
Medium confidenceManages Tencent Cloud authentication and service initialization through environment-based configuration (src/index.ts and configuration files). The server accepts SecretId, SecretKey, bucket name, and region as configuration parameters, initializing separate service instances (cosService, ciAIService, ciDocService, etc.) with shared credentials. Configuration supports both environment variables and explicit parameter passing, with validation at startup to ensure required credentials are present.
Implements centralized credential management at server initialization time (src/index.ts), injecting credentials into all service instances rather than per-request, reducing configuration overhead but limiting flexibility for multi-tenant scenarios.
Simpler than per-request credential passing because credentials are configured once at startup, but less flexible than request-scoped credentials for multi-tenant or multi-account deployments
asynchronous job polling and status tracking
Medium confidenceImplements asynchronous job submission and polling patterns for long-running operations (document conversion, video processing) through service methods like describeDocProcessJob and describeMediaJob. The server submits jobs and returns job IDs to clients, who can poll for completion status. The service layer handles job state tracking, error detection, and result retrieval from Tencent Cloud backend systems.
Implements explicit job submission and polling APIs (describeDocProcessJob, describeMediaJob) rather than blocking until completion, enabling LLM agents to submit multiple jobs and check status asynchronously, reducing agent latency for batch operations.
More scalable than synchronous blocking operations because it doesn't tie up agent resources, but requires clients to implement polling logic vs simpler synchronous APIs that block until completion
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with Tencent Cloud COS MCP, ranked by overlap. Discovered automatically through the match graph.
mcp
Official MCP Servers for AWS
Supabase
** - Connects to Supabase platform for database, auth, edge functions and more.
Firebase MCP Server
Manage Firebase Firestore, Auth, and Storage via MCP.
Supabase MCP Server
Manage Supabase databases, auth, and storage via MCP.
@supabase/mcp-server-supabase
MCP server for interacting with Supabase
DigitalOcean MCP Server
** - A Model Context Protocol (MCP) server that provides programmatic access to DigitalOcean's API. This server exposes tools for managing droplets, Kubernetes clusters, and container registries through the MCP interface.
Best For
- ✓Teams building LLM agents that need Tencent Cloud integration
- ✓Developers migrating from REST APIs to MCP-based cloud operations
- ✓Organizations standardizing on MCP for multi-cloud LLM integrations
- ✓LLM agents managing document repositories in Tencent Cloud
- ✓Automated workflows that need to stage files for processing
- ✓Teams using COS as a central data lake for multi-agent systems
- ✓Content management systems using LLM agents for quality control
- ✓Document digitization workflows requiring image enhancement
Known Limitations
- ⚠MCP protocol overhead adds ~50-100ms per tool invocation due to JSON serialization
- ⚠Tool discovery and schema validation happens on every server startup
- ⚠No built-in caching of tool schemas — clients must re-fetch on reconnection
- ⚠No streaming support for large files — entire file loaded into memory during transfer
- ⚠Bucket operations limited to single bucket per server instance (requires separate instances for multi-bucket access)
- ⚠No built-in retry logic for transient network failures — relies on SDK defaults
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
About
** - Quickly integrate with Tencent Cloud Storage (COS) and Data Processing (CI) capabilities powered
Categories
Alternatives to Tencent Cloud COS MCP
Are you the builder of Tencent Cloud COS MCP?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →