Skip to main content
Glama
kinginsun

io.github.kinginsun/mcp-aliyun-oss

by kinginsun

mcp-aliyun-oss

Standalone MCP server (Python SDK 2.x MCPServer) with one tool, oss-upload: put an object on Aliyun OSS named {prefix}/{md5}{ext}.

Repository: github.com/kinginsun/mcp-aliyun-oss

Credentials are read from the environment only. Never put AccessKeys in this repo or in chat.

Tool: oss-upload

Provide exactly one source:

Argument

Use when

Bytes

Extension

local_file_path

File already on disk

Read the absolute path

Path suffix; optional filename overrides

content

Generated text (HTML / Markdown / JSON)

UTF-8

Required filename (e.g. report.html)

content_base64

Binary

base64 decode; strips a data:*;base64, prefix

Same as content

Other arguments:

  • oss_path_prefix — default agents/docs. Must start with agents/. No ...

  • Return value: { status, file_size, key, url } (file_size is decoded bytes).

Decoded size cap is 100MB. Large files: pass local_file_path. Do not send huge base64 over stdio.

Related MCP server: Tencent Cloud COS MCP Server

Environment

Required (or the OSS_TEST_* aliases):

Variable

Meaning

OSS_ACCESS_KEY_ID

AccessKey ID

OSS_ACCESS_KEY_SECRET

AccessKey Secret

OSS_BUCKET

Bucket name

OSS_ENDPOINT

Regional endpoint without https://, e.g. oss-cn-shenzhen.aliyuncs.com

Optional: OSS_PUBLIC_URL_BASE (CDN / custom domain), OSS_CONNECT_TIMEOUT (seconds, default 120).

If OSS_PUBLIC_URL_BASE is set, url is {base}/{key}; otherwise https://{bucket}.{endpoint}/{key}.

Copy .env.example to a local .env for development; do not commit .env.

Install

From PyPI (after release):

uv tool install mcp-aliyun-oss
# or: pip install mcp-aliyun-oss

From source:

git clone https://github.com/kinginsun/mcp-aliyun-oss.git
cd mcp-aliyun-oss
uv sync --extra dev

Cursor (~/.cursor/mcp.json)

PyPI / uvx (recommended for end users):

{
  "mcpServers": {
    "aliyun-oss": {
      "command": "uvx",
      "args": ["mcp-aliyun-oss"],
      "env": {
        "OSS_ACCESS_KEY_ID": "your-id",
        "OSS_ACCESS_KEY_SECRET": "your-secret",
        "OSS_BUCKET": "your-bucket",
        "OSS_ENDPOINT": "oss-cn-hangzhou.aliyuncs.com"
      }
    }
  }
}

Local checkout (development):

{
  "mcpServers": {
    "aliyun-oss": {
      "command": "uv",
      "args": ["run", "--directory", "/path/to/mcp-aliyun-oss", "mcp-aliyun-oss"],
      "env": {
        "OSS_ACCESS_KEY_ID": "your-id",
        "OSS_ACCESS_KEY_SECRET": "your-secret",
        "OSS_BUCKET": "your-bucket",
        "OSS_ENDPOINT": "oss-cn-hangzhou.aliyuncs.com"
      }
    }
  }
}

Tests

uv run pytest

OSS put_object is mocked; no live bucket is required.

Publish (maintainers)

  1. GitHub — push to https://github.com/kinginsun/mcp-aliyun-oss (public).

  2. PyPI — bump version in pyproject.toml and server.json, then either:

    • GitHub Release with tag v0.1.0 (workflow .github/workflows/publish-pypi.yml uses secret PYPI_API_TOKEN), or

    • Local: uv build && uv publish with a PyPI API token.

  3. MCP Registry — after the same version is on PyPI, install mcp-publisher, log in with GitHub, and from this repo run mcp-publisher publish (uses root server.json).

Registry server name: io.github.kinginsun/mcp-aliyun-oss.

License

MIT

Available Tools

1 tool
oss-uploadA

Upload a file to Aliyun OSS. Object name is MD5(content) + extension under an agents/ prefix.

Provide exactly one source:

  • local_file_path: absolute path on the machine running this MCP server

  • content: UTF-8 text (generated HTML/Markdown/JSON); requires filename

  • content_base64: binary (optional data:*;base64, prefix); requires filename

filename is required for content / content_base64 and may override the suffix when using a path. Example: report.html. Prefix default agents/docs; must start with agents/. Decoded size cap 100MB — large files use local_file_path. Credentials: OSS_ACCESS_KEY_ID, OSS_ACCESS_KEY_SECRET, OSS_BUCKET, OSS_ENDPOINT (or OSS_TEST_*). Returns {status, file_size, key, url}.

ParametersJSON Schema
NameRequiredDescriptionDefault
contentNo
filenameNo
content_base64No
local_file_pathNo
oss_path_prefixNoagents/docs

TDQS

A4.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden and discloses crucial side effects and prerequisites: generated object names, prefix validation, credential environment variables, size cap, and return fields. It does not cover overwrite or error behavior, so it stops short of a 5.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The purpose is front-loaded and the rest is formatted as scannable bullets that map to parameters. Any redundancy, such as the repeated filename requirement, also carries the additional override/default information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with five unstructured optional parameters, no annotations, and no output schema, the description provides mutual exclusion rules, prerequisites, size constraints, naming, and return format—everything needed to call it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema descriptions are 0% covered, but the tool description explains all five parameters: path semantics for local_file_path, UTF-8 vs binary for content/content_base64, the filename override rule, and the prefix default/validation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The first sentence names the exact operation and destination ('Upload a file to Aliyun OSS'), and the object-name rule (MD5(content) + extension under agents/) makes the tool's function unambiguous even in the absence of sibling tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly requires exactly one source, tells when to prefer each source type, and states conditions such as filename being required for content/content_base64. The 100MB cap with 'large files use local_file_path' is a concrete when-to-use rule.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 1 tool updatev0.1.0
    • First observedoss-upload

TDQS

A4.4/5.0

Scored across 1 tool

Disambiguation5/5

Only one tool exists, so there is no risk of an agent confusing it with another tool. The single oss-upload tool has a clear, singular purpose.

Naming Consistency4/5

The tool name oss-upload follows a clear verb_noun style and is internally consistent. However, with only one tool there is no broader set of names to compare against for a full consistency assessment.

Tool Count2/5

A single upload tool is far too narrow for a server named mcp-aliyun-oss, which implies broader object storage capabilities. Even if the intent is upload-only, one tool feels under-scoped for the apparent domain.

Completeness2/5

The server only supports uploading files and lacks common OSS operations such as listing, retrieving, deleting, or generating presigned URLs. This is a significant functional gap that would force agents to rely on external tooling for basic object lifecycle management.

Maintenance

ActivityNo data
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    A Model Context Protocol server that enables large language models to upload files directly to Alibaba Cloud Object Storage Service (OSS), supporting multiple OSS configurations and specified upload directories.
    5 npm
    6
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    Enables interaction with Tencent Cloud Object Storage (COS) through MCP protocol. Supports file upload, download, deletion, listing objects, and generating temporary signed URLs for cloud storage management.
    5
    5 npm
    MIT