├── .gitignore ├── .snapshots ├── readme.md └── sponsors.md ├── INSTALLATION.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── __init__.py ├── database.py ├── enhanced_automation_middleware.py ├── mcp_server_enhanced.py ├── memory_manager.py ├── project_conventions.py ├── pyproject.toml ├── requirements.txt ├── sequential_thinking.py ├── setup.py └── tests └── test_update_task_status.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbunting99/enhanced-mcp-memory/HEAD/.gitignore -------------------------------------------------------------------------------- /.snapshots/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbunting99/enhanced-mcp-memory/HEAD/.snapshots/readme.md -------------------------------------------------------------------------------- /.snapshots/sponsors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbunting99/enhanced-mcp-memory/HEAD/.snapshots/sponsors.md -------------------------------------------------------------------------------- /INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbunting99/enhanced-mcp-memory/HEAD/INSTALLATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbunting99/enhanced-mcp-memory/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbunting99/enhanced-mcp-memory/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbunting99/enhanced-mcp-memory/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbunting99/enhanced-mcp-memory/HEAD/__init__.py -------------------------------------------------------------------------------- /database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbunting99/enhanced-mcp-memory/HEAD/database.py -------------------------------------------------------------------------------- /enhanced_automation_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbunting99/enhanced-mcp-memory/HEAD/enhanced_automation_middleware.py -------------------------------------------------------------------------------- /mcp_server_enhanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbunting99/enhanced-mcp-memory/HEAD/mcp_server_enhanced.py -------------------------------------------------------------------------------- /memory_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbunting99/enhanced-mcp-memory/HEAD/memory_manager.py -------------------------------------------------------------------------------- /project_conventions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbunting99/enhanced-mcp-memory/HEAD/project_conventions.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbunting99/enhanced-mcp-memory/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbunting99/enhanced-mcp-memory/HEAD/requirements.txt -------------------------------------------------------------------------------- /sequential_thinking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbunting99/enhanced-mcp-memory/HEAD/sequential_thinking.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbunting99/enhanced-mcp-memory/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_update_task_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbunting99/enhanced-mcp-memory/HEAD/tests/test_update_task_status.py --------------------------------------------------------------------------------