├── .dockerignore ├── .env.example ├── .gitignore ├── .uv └── config.toml ├── DOCKER.md ├── Dockerfile ├── LICENSE ├── README.md ├── pyproject.toml ├── src └── database_mcp │ ├── __init__.py │ ├── __main__.py │ └── mcp_server.py ├── tests ├── conftest.py ├── test_db_tools.py ├── test_multi_database.py └── test_query_execution.py └── uv.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRaLabs/legion-mcp/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRaLabs/legion-mcp/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRaLabs/legion-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /.uv/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRaLabs/legion-mcp/HEAD/.uv/config.toml -------------------------------------------------------------------------------- /DOCKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRaLabs/legion-mcp/HEAD/DOCKER.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRaLabs/legion-mcp/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRaLabs/legion-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRaLabs/legion-mcp/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRaLabs/legion-mcp/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/database_mcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/database_mcp/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRaLabs/legion-mcp/HEAD/src/database_mcp/__main__.py -------------------------------------------------------------------------------- /src/database_mcp/mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRaLabs/legion-mcp/HEAD/src/database_mcp/mcp_server.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRaLabs/legion-mcp/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_db_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRaLabs/legion-mcp/HEAD/tests/test_db_tools.py -------------------------------------------------------------------------------- /tests/test_multi_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRaLabs/legion-mcp/HEAD/tests/test_multi_database.py -------------------------------------------------------------------------------- /tests/test_query_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRaLabs/legion-mcp/HEAD/tests/test_query_execution.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheRaLabs/legion-mcp/HEAD/uv.lock --------------------------------------------------------------------------------