Memory & Workflow Management for AI
A complete MCP toolkit with 3 powerful tools: save memories as JSON, sync bidirectionally with Supabase Cloud, and pull workflow instructions—empowering AI agents to remember and collaborate.
A complete MCP toolkit with 3 powerful tools: save memories as JSON, sync bidirectionally with Supabase Cloud, and pull workflow instructions—empowering AI agents to remember and collaborate.
Set up Memorize MCP in minutes and give your AI assistant a persistent memory across all your devices.
Clone the repository and install dependencies using Bun runtime (v1.2.x or higher).
git clone https://github.com/congthien2003/sabo-mcp.git
cd sabo-mcp
bun installCreate a Supabase project, run the SQL migration from docs/version1.1/migrations/001_initial_schema.sql, and get your credentials.
# Required environment variables:
MEMORIZE_MCP_SUPABASE_URL
MEMORIZE_MCP_SUPABASE_SERVICE_ROLE_KEY
MEMORIZE_MCP_PROJECT_SLUG
# Optional:
MEMORIZE_MCP_PROJECT_ROOT
MEMORIZE_MCP_TARGET_PROJECT_DIRAdd memorize-mcp to your MCP client config (Claude Desktop, VS Code, etc.) using stdio transport.
{
"memorize-mcp": {
"command": "bun",
"args": ["run", "path/to/sabo-mcp/index.ts"],
"env": {
"MEMORIZE_MCP_PROJECT_ROOT": "C:/memories",
"MEMORIZE_MCP_SUPABASE_URL": "https://xxx.supabase.co",
"MEMORIZE_MCP_SUPABASE_SERVICE_ROLE_KEY": "your-key",
"MEMORIZE_MCP_PROJECT_SLUG": "my-project",
"MEMORIZE_MCP_TARGET_PROJECT_DIR": "C:/your-project"
}
}
}Start with pull_workflows to get instructions, sync_memorize to pull existing memories, then save_memorize after completing tasks.
# pull_workflows: Download workflow instructions
# sync_memorize: Sync memories from cloud
# save_memorize: Save new work summaries
# All tools available via MCP client interfaceEverything you need to know about memorize-mcp v1.2.1 and its three powerful MCP tools