loading…
Search for a command to run...
loading…
Backup AI - MCP server providing AI-powered tools and automation by MEOK AI Labs
Backup AI - MCP server providing AI-powered tools and automation by MEOK AI Labs
Backup Ai MCP provides AI-powered tools via the Model Context Protocol (MCP).
| Tool | Description |
|---|---|
create_backup_plan |
Create a backup plan following 3-2-1 rule (3 copies, 2 media types, 1 offsite). |
verify_backup |
Verify backup integrity using hash comparison. |
list_backups |
List available backups in a directory. |
calculate_backup_size |
Calculate estimated backup size and time. |
retention_policy |
Generate retention policy for compliance (SOC2, GDPR, HIPAA). |
pip install meok-backup-ai-mcp
Add to your Claude Desktop MCP config (claude_desktop_config.json):
{
"mcpServers": {
"backup-ai-mcp": {
"command": "python",
"args": ["-m", "meok_backup_ai_mcp.server"]
}
}
}
from mcp.server.fastmcp import FastMCP
# This server exposes 5 tool(s) via MCP
# See server.py for full implementation
MIT © MEOK AI Labs
Add this to claude_desktop_config.json and restart Claude Desktop.
{
"mcpServers": {
"backup-ai-mcp": {
"command": "npx",
"args": []
}
}
}