MCP Server Configuration
Sync Vault supports the Model Context Protocol (MCP), allowing AI tools to interact with your cloud files.
Claude Code CLI
Section titled “Claude Code CLI”Add the configuration in your .claude/mcp.json file (usually located in your user home directory):
{ "mcpServers": { "sync-vault-mcp": { "type": "sse", "url": "http://127.0.0.1:3000/sse" } }}Claude Desktop
Section titled “Claude Desktop”Claude Desktop only supports MCP Servers via STDIO. A bridge is required to connect to the Sync Vault MCP (which uses SSE). We recommend using
sse-bridge.
- Install the bridge:
npm install -g @mcpwizard/sse-bridge - Open Claude Desktop, go to Settings -> Developer, and click the Edit Config button.
- Add the following configuration:
{ "mcpServers": { "sync-vault-mcp": { "command": "npx", "args": [ "@mcpwizard/sse-bridge", "http://127.0.0.1:3000/sse" ] } }}Cursor / Trae
Section titled “Cursor / Trae”Open your Cursor/Trae MCP settings and manually add a new MCP Server.
- Name:
Sync Vault MCP - Type:
SSE - URL:
http://127.0.0.1:3000/sse(default)
{ "mcpServers": { "sync-vault-mcp": { "type": "sse", "url": "http://127.0.0.1:3000/sse" } }}