├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── debug_mcp_connection.py ├── example.md ├── mcp_sequential_thinking ├── __init__.py ├── analysis.py ├── logging_conf.py ├── models.py ├── server.py ├── storage.py ├── storage_utils.py ├── testing.py └── utils.py ├── pyproject.toml ├── run_server.py ├── tests ├── __init__.py ├── test_analysis.py ├── test_models.py └── test_storage.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | __pycache__ 3 | *.pyc 4 | .coverage 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/README.md -------------------------------------------------------------------------------- /debug_mcp_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/debug_mcp_connection.py -------------------------------------------------------------------------------- /example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/example.md -------------------------------------------------------------------------------- /mcp_sequential_thinking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mcp_sequential_thinking/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/mcp_sequential_thinking/analysis.py -------------------------------------------------------------------------------- /mcp_sequential_thinking/logging_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/mcp_sequential_thinking/logging_conf.py -------------------------------------------------------------------------------- /mcp_sequential_thinking/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/mcp_sequential_thinking/models.py -------------------------------------------------------------------------------- /mcp_sequential_thinking/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/mcp_sequential_thinking/server.py -------------------------------------------------------------------------------- /mcp_sequential_thinking/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/mcp_sequential_thinking/storage.py -------------------------------------------------------------------------------- /mcp_sequential_thinking/storage_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/mcp_sequential_thinking/storage_utils.py -------------------------------------------------------------------------------- /mcp_sequential_thinking/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/mcp_sequential_thinking/testing.py -------------------------------------------------------------------------------- /mcp_sequential_thinking/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/mcp_sequential_thinking/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/run_server.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Test package for the Sequential Thinking MCP server.""" 2 | -------------------------------------------------------------------------------- /tests/test_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/tests/test_analysis.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/tests/test_storage.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arben-adm/mcp-sequential-thinking/HEAD/uv.lock --------------------------------------------------------------------------------