Backup MCP Server

Add smart Backup ability to coding agents like Windsurf, Cursor, Cluade Coder, etc

Local serverstdioTypeScript

What is the Backup MCP server?

If you want an AI assistant working directly with Backup, the backup mcp server is the bridge. Add smart Backup ability to coding agents like Windsurf, Cursor, Cluade Coder, etc.

What Backup does

A specialized MCP server that provides backup and restoration capabilities for AI agents and code editing tools. Tested in both Cursor and Windsurf editors.

Key capabilities

  • Creates instant, targeted backups with agent context
  • Simpler than Git for single-operation safety
  • Preserves thought process and intent in backups
  • No commit messages or branching required
  • Better for AI agents making critical changes
  • Works without repository initialization
  • Faster for emergency "save points" during edits
  • Not for long-term version tracking

Tools it exposes

Once connected, the assistant can call these 2 tools directly:

  • Management — The Management tool exposed by this server
  • Manage — // Stop backup { "name": "mcp0_mcp_cancel", "parameters": { "operationId": "backup_1234" } }

Installing the backup mcp server

The server is distributed via npm as @smithery/cli, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

The server reads 3 environment variables: BACKUP_DIR, EMERGENCY_BACKUP_DIR, MAX_VERSIONS. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Backup sits in that group, and the shape of its toolset — Management, Manage — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • Written in TypeScript.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the backup mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
ManagementThe Management tool exposed by this server.
Manage// Stop backup { "name": "mcp0_mcp_cancel", "parameters": { "operationId": "backup_1234" } }

How to install the Backup MCP server

{
  "mcpServers": {
    "backup": {
      "command": "node",
      "args": ["./dist/index.js"],
      "env": {
        "BACKUP_DIR": "./.code_backups",
        "EMERGENCY_BACKUP_DIR": "./.code_emergency_backups",
        "MAX_VERSIONS": "20"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
BACKUP_DIRFilesystem location the server is allowed to use.Optional
EMERGENCY_BACKUP_DIRFilesystem location the server is allowed to use.Optional
MAX_VERSIONSConfiguration value read at startup.Optional

Example prompts to try

  • Use Backup to Management.
  • Use Backup to Manage.

Frequently asked questions

It connects Backup to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Management, Manage) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Backup directly.