-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path__init__.py
More file actions
27 lines (23 loc) · 759 Bytes
/
Copy path__init__.py
File metadata and controls
27 lines (23 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright 2025 Chris Bunting.
"""
Enhanced MCP Memory Server Package
Enterprise-grade MCP server with sequential thinking, project convention learning,
and intelligent memory management capabilities.
"""
__version__ = "2.0.0"
__author__ = "Chris Bunting"
__email__ = "cbunting99@users.noreply.github.com"
# Import main components for easier access
from .mcp_server_enhanced import main
from .memory_manager import MemoryManager
from .database import DatabaseManager
from .sequential_thinking import SequentialThinkingEngine, ThinkingStage
from .project_conventions import ProjectConventionLearner
__all__ = [
'main',
'MemoryManager',
'DatabaseManager',
'SequentialThinkingEngine',
'ThinkingStage',
'ProjectConventionLearner'
]