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.
# Add to your Claude Code skills
git clone https://github.com/abcamus/obsidian-sync-vault-ceGuides for using mcp servers skills like obsidian-sync-vault-ce.
Last scanned: 7/5/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-07-05T07:26:00.064Z",
"npmAuditRan": false,
"pipAuditRan": true,
"promptInjectionRan": true
}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 100 GitHub stars.
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.
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).
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.
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.
No comments yet. Be the first to share your thoughts!
Generate links based on file ID and path, integrated into Obsidian notes after rendering.
[]() format to link cloud resources.![]() format to embed cloud resources.Built-in Model Context Protocol (MCP) Server, allowing LLMs / AI Agents to directly access and operate on files in your Cloud Storage.
| Tool Name | Description | Note |
|---|---|---|
get_cloud_account_info |
Get cloud account and storage capacity info | |
list_cloud_files |
List files and folders at a specified cloud path | |
read_cloud_file |
Read cloud file content (supports streaming) | |
create_cloud_file |
Create a new file or folder in the cloud | |
delete_cloud_file |
Delete a cloud file or folder | |
move_cloud_file |
Move a cloud file or folder | |
rename_cloud_file |
Rename a cloud file or folder | |
download_cloud_file |
Download a cloud file to local storage | |
upload_cloud_file |
Upload a local file to the cloud | |
semantic_search |
Global search based on semantics | Baidu Netdisk only |
sharelink_set |
Set/Create a sharing link | Baidu Netdisk only |
upload_by_url |
Upload via offline URL task | Baidu Netdisk only |
Sync Vault provides Obsidian CLI commands for automation scripts and AI Agent workflows:
| Command | Purpose | Common Parameters |
|---|---|---|
sync-vault:help |
Show CLI command help | help=true |
sync-vault:list |
List cloud directory files (pagination/filter/recursive) | path cloud limit offset type minSize modifiedAfter recursive |
sync-vault:search |
Search cloud files (with pagination/type filter) | query cloud limit offset path type |
sync-vault:read |
Read cloud file content | path cloud maxLength |
sync-vault:info |
Get account and storage status | cloud |
sync-vault:doctor |
Diagnose Sync Vault health status | cloud |
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=trueto show command-specific usage.
Baidu Netdisk Bi-directional Sync Demo
Distributed collaborative editing, Demo.
| No. | Cloud Service | Supported Features |
|---|---|---|
| 1 | Baidu Netdisk | Backup, Sync, Online Image Preview, Online PDF Reading, Video Playback, Audio Playback, Cloud Link |
| 2 | OneDrive | Backup, Sync, Online Image Preview, Online PDF Reading, Audio Playback, Video Playback, Cloud Link |
| 3 | Aliyun Drive | Backup, Sync, Online Image Preview, Online PDF Reading, Audio Playback, Video Playback, Cloud Link |
| 4 | 115 Drive | Online Image Preview, Online PDF Reading, Audio Playback, Video Playback, Cloud Link |
| 5 | Quark Drive | Backup, Sync, Online Image Preview, Online PDF Reading, Cloud Link |
| 6 | Tencent COS | Backup, Sync |
| 7 | Nutstore | Backup, Sync |
| 8 | InfiniCloud | Backup, Sync |
| 9 | 123 Pan | Backup, Sync |
Search for sync vault ce in the plugin market, or click here to install quickly.
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"
}
}
}
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.
npm install -g @mcpwizard/sse-bridge{
"mcpServers": {
"sync-vault-mcp": {
"command": "npx",
"args": [
"@mcpwizard/sse-bridge",
"http://127.0.0.1:3000/sse"
]
}
}
}
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"
}
}
}