Skip to main content
Glama
kinginsun

io.github.kinginsun/mcp-aliyun-oss

by kinginsun

oss-upload

Upload files, text, or base64 content to Aliyun OSS. Provide a local file path or inline content with filename to store under an agents/ prefix, then get status, size, key, and URL.

Instructions

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}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contentNo
filenameNo
content_base64No
local_file_pathNo
oss_path_prefixNoagents/docs

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

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.

Deploy Server

Other Tools