Sync Vault CE

by Camus Qiu
5
4
3
2
1
Score: 48/100

Description

Category: File Management

The Sync Vault CE plugin provides a cloud-based synchronization solution for Obsidian users, allowing seamless syncing of vaults across multiple devices while ensuring data privacy and control. Users can manage file uploads and downloads manually, monitor sync status, and integrate with various cloud storage providers. The plugin offers AES-GCM encryption for secure data transfer and supports cross-platform compatibility, including Windows, macOS, Linux, iOS, and Android.

Reviews

No reviews yet.

Stats

85
stars
6,379
downloads
5
forks
422
days
5
days
6
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
22
total issues
9
open issues
13
closed issues
0
commits

Latest Version

6 days ago

Changelog

  • 修复:XML Parser 解析坚果云 size 错误。
  • 新增:批量添加视频到播放列表。
  • 优化:视频侧边栏改成独立视图显示。
  • 优化:减少网盘并发访问。
  • 优化:移动端文件写入体验,小于 2MB 则直写。
  • 优化:移动端视频播放器工具栏。

README file from

Github

主要功能简介

🔗 链接笔记和云盘资源

基于文件ID和文件路径生成链接,经插件渲染后集成到Obsidian笔记中。

  • []() 格式链接云盘资源。
  • ![]() 格式嵌入云盘资源。

🤖 MCP Server

内置 Model Context Protocol (MCP) Server,允许 LLM / AI Agent 直接读取和操作网盘中的文件。

  • 兼容 Claude Code、Cursor 等支持 MCP 的客户端。
  • 通过 SSE (Server-Sent Events) 提供实时上下文访问。
🛠️ 工具调用能力 (MCP Tools)
工具名称 功能描述 备注
get_cloud_account_info 获取云端账户及存储容量信息
list_cloud_files 列出云端指定路径的文件和文件夹
read_cloud_file 读取云端文件内容(支持流式读取)
create_cloud_file 在云端创建新文件或文件夹
delete_cloud_file 删除云端文件或文件夹
move_cloud_file 移动云端文件或文件夹
rename_cloud_file 重命名云端文件或文件夹
download_cloud_file 下载云端文件到本地
upload_cloud_file 上传本地文件到云端
semantic_search 基于语义的全局搜索 仅限百度网盘
sharelink_set 设置/创建分享链接 仅限百度网盘
upload_by_url 通过离线 URL 任务上传 仅限百度网盘

💻 CLI 命令(1.13.0)

Sync Vault 提供 Obsidian CLI 命令,便于自动化脚本与 AI Agent 编排:

命令 用途 常用参数
sync-vault:help 查看命令帮助 help=true
sync-vault:list 列出云端目录(支持分页/过滤/递归) path cloud limit offset type minSize modifiedAfter recursive
sync-vault:search 搜索云端文件(支持分页/类型过滤) query cloud limit offset path type
sync-vault:read 读取云端文件内容 path cloud maxLength
sync-vault:info 获取账号与容量信息(结构化状态) cloud
sync-vault:doctor 诊断同步健康状态 cloud

常用示例:

obsidian sync-vault:list path=/ cloud=aliyun limit=100 offset=0
obsidian sync-vault:search query=obsidian cloud=quark type=markdown
obsidian sync-vault:read path=/Notes/Welcome.md cloud=onedrive maxLength=8192
obsidian sync-vault:info cloud=aliyun
obsidian sync-vault:doctor cloud=aliyun

提示:所有子命令均支持 help=true 查看该命令参数。

✨ 备份

介绍

  • 轻松上传资料到多种网盘。
  • 自由切换云端仓库,备份资料到多个目录。

🔄 多设备自动同步

百度网盘双向同步演示

  • 支持双向同步和单向同步,自动识别文件删除 & 移动操作。
  • 内容冲突自动合并。
  • 文件删除可恢复。
  • 忽略大文件,按照正则表达式忽略对应名字文件。
  • 同步第三方插件和主题。
  • Markdown 文件端到端加密。

🤝 多人协同编辑

分布式多人协同编辑,演示

📱 云服务能力表

编号 云服务 支持的功能
1 百度网盘 备份、同步、图片预览、PDF阅读、视频播放、音频播放、网盘超链接
2 OneDrive 备份、同步、图片预览、PDF阅读、音频播放、视频播放、网盘超链接
3 阿里云盘 备份、同步、图片预览、PDF阅读、音频播放、视频播放、网盘超链接
4 115网盘 图片预览、PDF阅读、音频播放、视频播放、网盘超链接
5 夸克网盘 备份、同步、图片预览、PDF阅读、网盘超链接
6 腾讯COS 备份、同步
7 坚果云 备份、同步
8 InfiniCloud 备份、同步
9 123云盘 备份、同步

⚙️ 安装和使用

从插件市场安装

插件市场搜索 sync vault ce,或 点击链接 快速安装。

开始使用

  1. 点击侧边栏 ☁️ 图标,打开看板后,在快捷操作卡片找到新手引导按钮。
  2. 点击 新手引导 按钮,按照提示完成网盘登陆和同步模式设置。

配置MCP(SSE)

Claude Code CLI

.claude/mcp.json 中添加如下代码(注:3000修改为实际的端口):

{
  "mcpServers": {
    "sync-vault-mcp": {
      "type": "sse",
        "url": "http://127.0.0.1:3000/sse"
      }
  }
}
Claude Desktop

Claude Desktop由于只支持 STDIO 方式接入MCP Server,可选择桥接器转接 Sync Vault MCP,这里可以选择 sse-bridge。

  1. npm install -g @mcpwizard/sse-bridge
  2. 在 Claude Desktop 【设置】-【开发者】中点击编辑配置按钮,复制粘贴以下代码。
{
  "mcpServers": {
    "sync-vault-mcp": {
      "command": "npx",
      "args": [
        "@mcpwizard/sse-bridge",
        "http://127.0.0.1:3000/sse"
      ]
    }
  }
}
Cursor/Trae

在 Cursor/Trae 的MCP设置中,选择手动添加 MCP Server(Sync Vault MCP 默认 http://127.0.0.1:3000/sse)。

{
  "mcpServers": {
    "sync-vault-mcp": {
      "type": "sse",
        "url": "http://127.0.0.1:3000/sse"
      }
  }
}

🗺️ Roadmap

  • 🌐 更多云服务
  • 🏠 多人协同
  • 🎨 更好的用户体验
  • ⎔ 支持Zotero
  • 🤖 AI Infra

❤️ Special Thanks

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Tressel Sync for Obsidian
4 years ago by Tressel
Official Tressel plugin to export various content from the Internet (like Twitter, Reddit, Kindle and more) into Obsidian
KOReader Sync
4 years ago by Federico "Edo" Granata
Obsidian.md plugin to sync highlights/notes from koreader
Pinboard Sync
4 years ago by Mathew Spolin
Obsidian plugin to sync Pinboard.in links to Daily Notes
Vim Multibyte Char Search
4 years ago by anselmwang
Search multibyte characters by the corresponding input method encoding. For example, for Chinese, search "用来" by "yl"
Weread Plugin
4 years ago by hank zhao
Obsidian Weread Plugin is a plugin to sync Weread(微信读书) hightlights and annotations into your Obsidian Vault.
QuickShare
4 years ago by Maxime Cannoodt (@mcndt)
📝 An Obsidian plugin for sharing encrypted Markdown notes on the web. Zero configuration required.
Douban
4 years ago by Wanxp
an obsidian plugin that can pull data from douban to your markdown file
Readavocado Sync
4 years ago by Cyrus Zhang
Readavocado obsidian plugin to sync your favorite highlights.
Vika Sync
4 years ago by romantic-black
Awesome Flashcard
4 years ago by AwesomeDog
Handy Anki integration for Obsidian.
SamePage
3 years ago by SamePage
Sync Graph Settings
3 years ago by Xallt
This is a plugin for syncing graph settings (Color Groups and Search Filters) to Local Graphs
Awesome Reader
3 years ago by AwesomeDog
Make Obsidian a proper Reader.
WuCai highlights Official
3 years ago by 希果壳五彩
WuCai highlights Official, for Sync highlights into your obsidian notes
Askify Sync
3 years ago by Kishlay Raj
Invio
3 years ago by frontend-engineering
Publish obsidian docs online
Syncthing Integration
3 years ago by LBF38
Obsidian plugin for Syncthing integration
TickTick
3 years ago by Viduy Cheung
Share to NotionNext
3 years ago by EasyChris, jxpeng98
Share obsidian markdown file to any Notion database and generate notion share link 同步obsdian文件到任意Notion数据库。
AnkiSync+
3 years ago by RochaG0
gpgCrypt
3 years ago by Tjado Mäcke
Seamlessly encrypts your notes using GPG. Supports smartcards for enhanced security! 🔒📝📎
Share Note
3 years ago by Alan Grainger
Instantly share an Obsidian note with the full theme exactly like you see in your vault. Data is shared encrypted by default, and only you and the person you send it to have the key.
Notes Sync Share
3 years ago by Alt-er
Sync and share (publish) your notes in your own private service.
Global Markdown Encryption
3 years ago by shlemiel
a plugin for encrypting obsidian markdowns in-memory, single password based.
TickTickSync
2 years ago by thesamim
Peerdraft
2 years ago by Peerdraft
Collaboration for Obsidian – Sync, Share, and Edit anywhere
Instapaper
2 years ago by Instapaper
Official Instapaper plugin for Obsidian
Settings profiles
2 years ago by 4Source
This is a plugin for Obsidian (https://obsidian.md). Allows you to create various global settings profiles. You can sync them between different vaults. To keep all your settings in sync, you'll never have to manually adjust them again for every vault you have or create in the future.
Evernote Decryptor
2 years ago by rcmdnk
Obsidian Plugin for encrypted data imported from Evernote
GPG Encrypt
2 years ago by Luis Jaramillo
Obsidian Plugin GPG Inline Encrypt
GitHub Sync
2 years ago by Kevin Chin
Sync Obsidian vault to personal GitHub
BookFusion
2 years ago by BookFusion
BookFusion Obsidian Plugin
Confluence Sync
2 years ago by Prateek Grover
Obsidian plugin for obsidian confluence sync
Cicada Synchronizer
2 years ago by Adapole, Adapole, Mahyar Mirrashed
Crypt It
2 years ago by fyears
Obsidian plugin allowing users to right click on a file to generate an encryption version of the file using a password.
Sync config folder to common folder
2 years ago by codeonquer
Voicenotes Sync
2 years ago by Andrew Lombardi
Official Obsidian plugin that syncs your notes from VoiceNotes.com into your vault
Memos Sync
2 years ago by RyoJerryYu
Syncing Memos to Obsidian daily note. Fully compatible with official Daily Notes plugin, Calendar plugin and Periodic Notes plugin.
DocBase (Unofficial)
2 years ago by yurikuvanov
Unofficial DocBase plugin for Obsidian
Vikunja Sync
2 years ago by Peter Heiss
Manage your tasks in vikunja.
File Share
2 years ago by muckmuck
A lightweight obsidian.md plugin for sharing files between multiple vaults
AnySocket Sync
2 years ago by Andrei Vaduva
Securely Synchronize your Vault on a self-hosted server
Todoist Sync
6 years ago by jamiebrynes7
Materialize Todoist tasks in Obsidian notes
Filename Heading Sync
5 years ago by dvcrn
Obisdian.md plugin to keep the filename and the first header of the file in sync
Meld Encrypt
5 years ago by meld-cp
Hide secrets in your Obsidian.md vault
Readwise Mirror
5 years ago by jsonmartin
Taskbone
5 years ago by Dominik Schlund
Obsidian OCR plugin - extract text from images
Cryptsidian
5 years ago by triumphantomato
Encrypt all files in your Obsidian.md Vault with a password.
Remotely Save
4 years ago by fyears
Sync notes between local and cloud with smart conflict: S3 (Amazon S3/Cloudflare R2/Backblaze B2/...), Dropbox, webdav (NextCloud/InfiniCLOUD/Synology/...), OneDrive, Google Drive (GDrive), Box, pCloud, Yandex Disk, Koofr, Azure Blob Storage.
BookXNote Sync
2 years ago by CodeListening
将bookxnote中的笔记同步到obsidian指定的文件夹中
Cloud Storage
2 years ago by Jiajun Ma
Obsidian Cloud Storage is a powerful and user-friendly plugin designed to seamlessly integrate cloud storage capabilities into your Obsidian workflow. This plugin allows you to effortlessly upload your attachments to the cloud, freeing up local storage space and enabling easy sharing and access across all your devices.
Strava Sync
2 years ago by Howard Wilson
Sync Strava activities to your Obsidian vault
ExMemo Client
2 years ago by Yan.Xie
exmemo obsidian plugin
Unearthed (Kindle Sync)
a year ago by CheersCal
HackMD Sync
a year ago by thor kampefner
obsidian extension to push and pull notes from hackmd conveniently
Google Drive Sync
a year ago by Richard Xiong
A plugin to make Obsidian work in Google Drive to enable access to iOS.
Sync to Hugo
a year ago by Cray Huang
Sync the selected notes from Obsidian to Hugo
Cypher
a year ago by Atharva Wankhede
Obsidian Plugin
Sync Cnblog
a year ago by zhanglei
同步文章到博客园
WikiDocs
a year ago by pahkey
Send Note
a year ago by jvsteiner
Instantly share an Obsidian note text/content with other users. Data is shared encrypted by default, and only you and the person you send it to have the key.
BetaX NAS Sync
a year ago by Skye
Obsidian NAS Sync
External File Embed and Link
a year ago by oylbin
Embed and link local files outside your obsidian vault with relative paths for cross-device and multi-platform compatibility.
Hoarder Sync
a year ago by Jordan Hofker
An Obsidian.md community plugin that allows syncing with https://karakeep.app/
Feedly Annotations Sync
a year ago by Nick Felker
Download my Feedly annotations
Glasp
a year ago by Glasp
Obsidian plugin to import highlights and notes from Glasp
Minote Sync
a year ago by Emac Shen
Minote Sync is a Obsidian plugin to sync Minote(小米笔记) into your Vault.
Age Encrypt
a year ago by Metin Ur
A plugin for Obsidian that provides age-based encryption for your notes.
Checkbox Sync
a year ago by Grol
Keep parent/child checkboxes in sync automatically within your Obsidian task lists.
VaultSync
a year ago by Justin Bird
Obsidian plugin to link your vault to a cloud storage provider.
KOI Sync
a year ago by Luke Miller
Memos AI Sync
a year ago by leoleelxh
obsidian-memos-sync-plugin,将 Memos 内容同步到 Obsidian 的插件,提供无缝集成体验。
Jade Publisher
a year ago by Lucas Ji
This is a simple plugin to help publish your Obsidian vault to a public website(build with Jade).
InfoFlow
a year ago by RockieStar Inc.
Obsidian plugin for InfoFlow.app - This plugin integrates InfoFlow with Obsidian, allowing you to sync your saved articles, web pages, notes, and highlights directly into your Obsidian vault.
LINE Notes Sync
a year ago by onikun94
GitHub Gitless Sync
a year ago by Silvano Cerza
Sync a GitHub repository with vaults on different platforms without requiring git installation
GitHub Tracker
a year ago by schaier-io
Browser History
a year ago by noy4
Sync your browser history to notes.
Anki Integration
a year ago by Noah Boos AKA Rift
Create flashcards from your notes with a seamless interface, structuring them with metadata and syncing effortlessly via AnkiConnect.
Jira Issue Manager
a year ago by Alamion
Obisdian plugin to sync tasks between Obsidian and Jira
Cubox
a year ago by delphi-2015
Cubox Official Obsidian Plugin
Limitless Lifelogs
a year ago by Maclean Dunkin
Sync your Limitless AI lifelog entries directly into Obsidian markdown files.
Markwhen File Sync
a year ago by rouvenjahnke
Synchronize properties from your Obsidian notes with a Markwhen timeline file.
Markdown Hijacker
a year ago by Yongmini
Beyond the Vault. One hub for every Markdown, everywhere
Google Contacts
a year ago by aleksejs1
Obsidian plugin for sync Google Contacts with obsidian notes
Eccirian Encrypt
10 months ago by Entropiex
Next-generation file encryption solution
Yandex Wiki Integration
10 months ago by Pavel Sokolov
Github Issues
10 months ago by LonoxX
An Obsidian plugin that integrates with GitHub to track issues and pull requests directly in your vault.
Cloud sync
9 months ago by Bing
一款强大的 Obsidian 同步插件,支持将笔记自动同步到多种云盘服务,提供端到端加密保护,让您的笔记既安全又便捷。
Shell Path Copy
8 months ago by Charles Kelsoe (ckelsoe)
Obsidian plugin to copy file and folder paths with shell-friendly formatting for Linux\Mac and Windows
Open in Cursor
8 months ago by awaken233
An Obsidian plugin to open files in Cursor IDE or other VSCode-based editors (VSCode, Kiro, etc.) with automatic cursor position jumping. 一个可以在 Cursor IDE 或其他类 VSCode 编辑器中打开文件并自动跳转光标位置的 Obsidian 插件。
HTTP Link Maker
8 months ago by Kenneth Christensen
Create HTTP links for Obsidian notes that work on all your devices
Sync-safe file names
6 months ago by j-maas
Ensure your Obsidian files can always be synced across all your devices.
Cliplet
6 months ago by namikaze-40p
An Obsidian plugin that serves as a clipboard and snippet manager — your own, separate from the OS clipboard.
MrDoc
6 months ago by zmister
An Obsidian plugin for MrDoc that enables two-way synchronization between local Obsidian documents and MrDoc.一个 Obsidian 的 MrDoc 插件,用于 Obsidian 本地文档与 MrDoc 的双向同步
Nutstore Sync
5 months ago by nutstore-dev
Vault Encrypt
5 months ago by Pluppen
Obsidian Plugin that encrypts/decrypts the entire vault.
DOCX Exporter
5 months ago by Kanshurichard
An Obsidian plug-in, aiming to help users easily export note content into DOCX format.
Hardcover
3 months ago by aliceinwaterdeep
Double-Click Image Opener
2 months ago by atman
Open images with your system's default application by double-clicking.