refactor(cloud-types): 更新支持的云盘类型列表

This commit is contained in:
YAYOI27
2025-08-26 16:34:17 +08:00
committed by YAYOI27
parent 294b587471
commit df0168a04d

View File

@@ -249,32 +249,34 @@ class PanSouMCPServer {
private async getCloudTypesResource() { private async getCloudTypesResource() {
const cloudTypes = { const cloudTypes = {
supported: [ supported: [
'baidu', // 百度网盘 'baidu', // 百度网盘
'ali', // 阿里云盘 'aliyun', // 阿里云盘
'quark', // 夸克网盘 'quark', // 夸克网盘
'uc', // UC网 'tianyi', // 天翼云
'115', // 115网盘 'uc', // UC网盘
'lanzou', // 蓝奏云 'mobile', // 移动云盘
'tianyi', // 天翼云 '115', // 115网
'weiyun', // 微云 'pikpak', // PikPak
'onedrive', // OneDrive 'xunlei', // 迅雷网盘
'googledrive',// Google Drive '123', // 123网盘
'mega', // MEGA 'magnet', // 磁力链接
'other' // 其他 'ed2k', // 电驴链接
'others' // 其他
], ],
description: { description: {
'baidu': '百度网盘', 'baidu': '百度网盘',
'ali': '阿里云盘', 'aliyun': '阿里云盘',
'quark': '夸克网盘', 'quark': '夸克网盘',
'uc': 'UC网盘',
'115': '115网盘',
'lanzou': '蓝奏云',
'tianyi': '天翼云盘', 'tianyi': '天翼云盘',
'weiyun': '微云', 'uc': 'UC网盘',
'onedrive': 'OneDrive', 'mobile': '移动云盘',
'googledrive': 'Google Drive', '115': '115网盘',
'mega': 'MEGA', 'pikpak': 'PikPak',
'other': '其他网盘' 'xunlei': '迅雷网盘',
'123': '123网盘',
'magnet': '磁力链接',
'ed2k': '电驴链接',
'others': '其他网盘'
} }
}; };