tnnevol/auto-save-mcp
auto-save-mcp
Platform-specific configuration:
{
"mcpServers": {
"auto-save-mcp": {
"command": "npx",
"args": [
"-y",
"auto-save-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
> MCP 标准的网盘自动转存服务 API 服务器 | v1.3.1-beta.0
一个符合 MCP (Model Context Protocol) 标准的服务器,用于集成 auto-save 服务,自动化处理网盘分享链接的转存任务。
# 使用 pnpm 安装依赖
pnpm install @tnnevol/auto-save-mcp
# 或使用 pnpm 直接运行
pnpm dlx @tnnevol/auto-save-mcp# 复制环境变量模板
cp .env.example .env.local
# 编辑 .env.local
AUTO_SAVE_BASE_URL=http://your-auto-save-service:5005
AUTO_SAVE_TOKEN=your-actual-token-here
MCP_PORT=8868⚠️ 注意: AUTO_SAVE_BASE_URL 和 AUTO_SAVE_TOKEN 是必填的
# 启动服务器(通过 dotenv-cli 加载环境变量)
pnpm start
# 或使用开发模式(自动热重载 + 环境变量)
pnpm dev服务器将启动在 http://localhost:8868
{
"mcpServers": {
"auto-save": {
"command": "node",
"args": ["/path/to/auto-save-mcp/dist/server.js"],
"env": {
"AUTO_SAVE_BASE_URL": "http://localhost:5005",
"AUTO_SAVE_TOKEN": "your-token"
}
}
}
}| 工具 | 功能 | 必填参数 | | ------------------------------ | ------------- | ---------------------------- | | auto-save-add-task | 添加转存任务 | taskname, shareurl, savepath | | auto-save-get-config | 获取配置 | - | | auto-save-update-config | 更新配置 | config | | auto-save-run-tasks | 运行任务 | - | | auto-save-get-tasks-list | 获取任务列表 | - | | auto-save-delete-task | 删除任务 | taskId | | auto-save-update-task | 更新任务 | taskId, taskConfig | | auto-save-toggle-task-status | 启用/禁用任务 | taskId, enable | | `auto-save-get-task-his
Loading reviews...