file-download-stdio
Download files from the 360 AI Cloud Drive by retrieving their direct download links. Specify a custom directory or use the default .mcp-downloads folder for saving files.
Instructions
获取云盘中指定文件的下载链接并支持直接下载文件。可以指定下载目录,默认下载到用户主目录的 .mcp-downloads 文件夹中。
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| auto | No | 是否直接下载文件,默认为 true | |
| downloadDir | No | 指定下载目录,必须有读写权限,默认为用户主目录下的 .mcp-downloads 文件夹 | |
| nid | Yes | 文件的唯一标识ID,可通过文件列表或搜索获取 | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "auto": {
      "description": "是否直接下载文件,默认为 true",
      "type": "boolean"
    },
    "downloadDir": {
      "description": "指定下载目录,必须有读写权限,默认为用户主目录下的 .mcp-downloads 文件夹",
      "type": "string"
    },
    "nid": {
      "description": "文件的唯一标识ID,可通过文件列表或搜索获取",
      "type": "string"
    }
  },
  "required": [
    "nid"
  ],
  "type": "object"
}