Skip to content

MCP Server Configuration

Sync Vault supports the Model Context Protocol (MCP), allowing AI tools to interact with your cloud files.

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 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.

  1. Install the bridge: npm install -g @mcpwizard/sse-bridge
  2. Open Claude Desktop, go to Settings -> Developer, and click the Edit Config button.
  3. Add the following configuration:
{
"mcpServers": {
"sync-vault-mcp": {
"command": "npx",
"args": [
"@mcpwizard/sse-bridge",
"http://127.0.0.1:3000/sse"
]
}
}
}

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"
}
}
}