obsidian-sync-vault-ce

作者 abcamus已验证

Professional cloud sync & VFS for Obsidian. Features zero-space VFS, 4K streaming, MCP AI engine, and P2P collaboration. Supports Baidu/Aliyun/Quark/WebDAV/S3.

122
Stars
10
Forks
TypeScript
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/abcamus/obsidian-sync-vault-ce

快速入门

使用 obsidian-sync-vault-ce 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

🌟 Sync Vault

中文

GitHub Stars License Obsidian Plugin Latest Release Total Downloads
Official Site Discord

The missing bridge between your 10 TB cloud drive and your AI brain. Access, sync, and link everything—images, PDFs, audio, video—across devices without filling up local storage.

Sync Vault Demo

Key Features

🔗 Link Notes and Cloud Resources

Generate links based on file ID and path, integrated into Obsidian notes after rendering.

  • []() format to link cloud resources.
  • ![]() format to embed cloud resources.

🤖 MCP Server

Built-in Model Context Protocol (MCP) Server, allowing LLMs / AI Agents to directly access and operate on files in your Cloud Storage.

  • Compatible with MCP-supported clients such as Claude Code and Cursor.
  • Provides real-time context access via SSE (Server-Sent Events).

🛠️ MCP Tool Capabilities

Tool NameDescriptionNote
get_cloud_account_infoGet cloud account and storage capacity info
list_cloud_filesList files and folders at a specified cloud path
read_cloud_fileRead cloud file content (supports streaming)
create_cloud_fileCreate a new file or folder in the cloud
delete_cloud_fileDelete a cloud file or folder
move_cloud_fileMove a cloud file or folder
rename_cloud_fileRename a cloud file or folder
download_cloud_fileDownload a cloud file to local storage
upload_cloud_fileUpload a local file to the cloud
semantic_searchGlobal search based on semanticsBaidu Netdisk only
sharelink_setSet/Create a sharing linkBaidu Netdisk only
upload_by_urlUpload via offline URL taskBaidu Netdisk only

💻 CLI Commands (1.13.0)

Sync Vault provides Obsidian CLI commands for automation scripts and AI Agent workflows:

CommandPurposeCommon Parameters
sync-vault:helpShow CLI command helphelp=true
sync-vault:listList cloud directory files (pagination/filter/recursive)path cloud limit offset type minSize modifiedAfter recursive
sync-vault:searchSearch cloud files (with pagination/type filter)query cloud limit offset path type
sync-vault:readRead cloud file contentpath cloud maxLength
sync-vault:infoGet account and storage statuscloud
sync-vault:doctorDiagnose Sync Vault health statuscloud

Common examples:

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

Tip: all sub-commands support help=true to show command-specific usage.

✨ Backup

Introduction

  • Easily upload data to various cloud drives.
  • Freely switch cloud vaults and backup data to multiple directories.

🔄 Multi-device Auto Sync

Baidu Netdisk Bi-directional Sync Demo

  • Supports bi-directional and one-way sync, automatically identifies file deletion & move operations.
  • Automatic merge of content conflicts.
  • File deletion is recoverable.
  • Ignore large files, ignore files by name using regular expressions.
  • Sync third-party plugins and themes.
  • End-to-end encryption for Markdown files.

🤝 Collaborative Editing

Distributed collaborative editing, Demo.

📱 Cloud Service Features

No.Cloud ServiceSupported Features
1Baidu NetdiskBackup, Sync, Online Image Preview, Online PDF Reading, Video Playback, Audio Playback, Cloud Link
2OneDriveBackup, Sync, Online Image Preview, Online PDF Reading, Audio Playback, Video Playback, Cloud Link
3Aliyun DriveBackup, Sync, Online Image Preview, Online PDF Reading, Audio Playback, Video Playback, Cloud Link
4115 DriveOnline Image Preview, Online PDF Reading, Audio Playback, Video Playback, Cloud Link
5Quark DriveBackup, Sync, Online Image Preview, Online PDF Reading, Cloud Link
6Tencent COSBackup, Sync
7NutstoreBackup, Sync
8InfiniCloudBackup, Sync
9123 PanBackup, Sync

⚙️ Installation and Usage

Install from Plugin Market

Search for sync vault ce in the plugin market, or click here to install quickly.

Get Started

  1. Click the ☁️ icon in the sidebar to open the dashboard, then find the "Beginner Guide" button in the Quick Actions card.
  2. Click the Beginner Guide button and follow the prompts to complete cloud drive login and sync mode settings.

Configure MCP (SSE)

Claude Code CLI

Add the following code in .claude/mcp.json (Note: change 3000 to the actual port):

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

Claude Desktop

Since Claude Desktop only supports STDIO method to connect MCP Server, you can choose a bridge to connect Sync Vault MCP. Here you can choose sse-bridge.

  1. npm install -g @mcpwizard/sse-bridge
  2. In Claude Desktop [Settings] - [Developer], click the edit configuration button, copy and paste the following code.
{
  "mcpServers": {
    "sync-vault-mcp": {
      "command": "npx",
      "args": [
        "@mcpwizard/sse-bridge",
        "http://127.0.0.1:3000/sse"
      ]
    }
  }
}

Cursor/Trae

In Cursor/Trae's MCP settings, choose to manually add MCP Server (Sync Vault MCP defaults to http://127.0.0.1:3000/sse).

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

🗺️ Roadmap

  • 🌐 More Cloud Services
  • 🏠 Collaborative Editing
  • 🎨 Better User Experience
  • ⎔ Zotero Support
  • 🤖 AI Infrastructure

🔗 Quick Links

❤️ Special Thanks

常见问题

What is obsidian-sync-vault-ce?

obsidian-sync-vault-ce is an open-source mcp servers skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by abcamus. Professional cloud sync & VFS for Obsidian. Features zero-space VFS, 4K streaming, MCP AI engine, and P2P collaboration. Supports Baidu/Aliyun/Quark/WebDAV/S3. It has 122 GitHub stars.

Is obsidian-sync-vault-ce safe to use?

Yes. obsidian-sync-vault-ce passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install obsidian-sync-vault-ce?

Clone the repository with "git clone https://github.com/abcamus/obsidian-sync-vault-ce" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is obsidian-sync-vault-ce written in?

obsidian-sync-vault-ce is primarily written in TypeScript. It is open-source under abcamus on GitHub, so you can review or fork the full source.

Are there alternatives to obsidian-sync-vault-ce?

Yes. SkillsLLM lists many other MCP Servers skills you can browse and compare side by side. Open the MCP Servers category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh obsidian-sync-vault-ce against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

Scrapling

by D4Vinci

🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!

75,9137,581Python
MCP 服务器
查看详情

TrendRadar

by sansan0

⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。

61,65224,883Python
MCP 服务器
查看详情

context7

by upstash

Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors

61,0602,938TypeScript
MCP 服务器
查看详情

High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph — average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.

39,9393,219C
MCP 服务器
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情