Awesome MCPSoftware Development

hexitex/MCP-Backup-Server

⭐ 12 JavaScript added to this list on 2025-05-06 repository created 2025-03-10

MCP Backup Server is a JavaScript and TypeScript MCP server that gives AI agents and code editing tools a way to take quick save points before risky edits. The author frames it as deliberately different from version control: it creates instant targeted copies without repository initialisation, commit messages or branching, and it records the agent reasoning behind each backup as context attached to the snapshot. The README is explicit about the trade-off, listing as drawbacks that it stores whole file copies rather than diffs, offers no merging, no conflict resolution, no distributed backup and no long-term history, and that it is not a replacement for proper version control. Tools split into three groups. File operations are backup_create, which records a file together with agent context, backup_list and backup_restore, which itself can take an emergency copy before overwriting. Folder operations are backup_folder_create with include and exclude glob patterns, backup_folder_list and backup_folder_restore, which restores a folder structure. Management adds backup_list_all across everything stored and mcp_cancel to abort a running operation. Behaviour is tuned through three environment variables: the backup directory, the emergency backup directory and a cap on retained versions per file. The project has been tested inside Cursor and Windsurf, and the README shows the MCP server block for a Windsurf configuration and notes that Cursor uses an equivalent .cursor/mcp.json file; installation is possible manually with npm or automatically through Smithery for Claude Desktop. The documentation also supplies a copy-paste rules block and example tool calls that instruct an agent to back up only before refactoring, folder removal, multi-file changes, resuming major work or restoring, keeping backups minimal and always justified. That block is guidance for the agent using the server, not instructions for a reader.

https://github.com/hexitex/MCP-Backup-Server

mcp-serverbackuprestoreversioningfile-managementcursorwindsurfjavascript

Also in Software Development

Graphify-Labs/graphify

Graphify transforms codebases, documentation, and other files into queryable knowledge graphs, enhancing developer productivity with local AST parsing and detailed edge explanations.

upstash/context7

Context7 MCP Server is an MCP server that delivers up-to-date, version-specific code documentation and examples to enhance LLMs and AI code editors, ensuring accurate and current code generation.

DeusData/codebase-memory-mcp

High-performance Model Context Protocol (MCP) server that indexes codebases into a persistent knowledge graph for AI coding agents, supporting 158 languages, lightning-fast queries, and various dev...

github/github-mcp-server

GitHub MCP Server is an official Model Context Protocol server that integrates with GitHub APIs to enable advanced automation and AI-powered interactions with GitHub repositories and workflows.

tirth8205/code-review-graph

Code-review-graph is a local-first code intelligence solution that builds a persistent structural map of your codebase to provide precise context to AI coding tools, significantly reducing token us...

oraios/serena

Serena is a free and open-source coding agent toolkit that uses the Model Context Protocol to enable LLMs to autonomously perform semantic code retrieval and editing with IDE-like precision on complex codebases.

eyaltoledano/claude-task-master

Claude Task Master is an AI-powered task management system designed for AI-driven development that integrates seamlessly with various editors via the Model Control Protocol (MCP).

mksglu/context-mode

Context Mode is an MCP server designed to optimize context window usage for AI coding agents by sandboxing tool output, tracking session continuity with SQLite, and promoting LLMs as code generator...