├── .dockerignore ├── .env.example ├── .github ├── dependabot.yml └── workflows │ ├── manual-release.yml │ ├── pr-checks.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── docker-compose.yaml ├── docs ├── ARCHITECTURE.md ├── execution │ └── multiple-mcp.md └── installation │ ├── claude.md │ ├── code.md │ ├── cursor.md │ ├── gemini.md │ ├── other.md │ └── windsurf.md ├── pyproject.toml ├── src └── atomic_red_team_mcp │ ├── __init__.py │ ├── __main__.py │ ├── models │ ├── __init__.py │ └── atomic.py │ ├── server │ ├── __init__.py │ ├── app.py │ ├── auth.py │ └── resources.py │ ├── services │ ├── __init__.py │ ├── atomic_loader.py │ └── executor.py │ ├── tools │ ├── __init__.py │ ├── execute_atomic.py │ ├── query_atomics.py │ ├── refresh_atomics.py │ ├── server_info.py │ └── validate_atomic.py │ └── utils │ ├── __init__.py │ └── config.py ├── tests ├── __init__.py └── test_imports.py └── uv.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/.env.example -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/manual-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/.github/workflows/manual-release.yml -------------------------------------------------------------------------------- /.github/workflows/pr-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/.github/workflows/pr-checks.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/docs/ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/execution/multiple-mcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/docs/execution/multiple-mcp.md -------------------------------------------------------------------------------- /docs/installation/claude.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/docs/installation/claude.md -------------------------------------------------------------------------------- /docs/installation/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/docs/installation/code.md -------------------------------------------------------------------------------- /docs/installation/cursor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/docs/installation/cursor.md -------------------------------------------------------------------------------- /docs/installation/gemini.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/docs/installation/gemini.md -------------------------------------------------------------------------------- /docs/installation/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/docs/installation/other.md -------------------------------------------------------------------------------- /docs/installation/windsurf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/docs/installation/windsurf.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/__init__.py: -------------------------------------------------------------------------------- 1 | """Atomic Red Team MCP Server package.""" 2 | 3 | __version__ = "1.2.6" 4 | -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/src/atomic_red_team_mcp/__main__.py -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/src/atomic_red_team_mcp/models/__init__.py -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/models/atomic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/src/atomic_red_team_mcp/models/atomic.py -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/src/atomic_red_team_mcp/server/__init__.py -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/src/atomic_red_team_mcp/server/app.py -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/server/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/src/atomic_red_team_mcp/server/auth.py -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/server/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/src/atomic_red_team_mcp/server/resources.py -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/src/atomic_red_team_mcp/services/__init__.py -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/services/atomic_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/src/atomic_red_team_mcp/services/atomic_loader.py -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/services/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/src/atomic_red_team_mcp/services/executor.py -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/src/atomic_red_team_mcp/tools/__init__.py -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/tools/execute_atomic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/src/atomic_red_team_mcp/tools/execute_atomic.py -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/tools/query_atomics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/src/atomic_red_team_mcp/tools/query_atomics.py -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/tools/refresh_atomics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/src/atomic_red_team_mcp/tools/refresh_atomics.py -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/tools/server_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/src/atomic_red_team_mcp/tools/server_info.py -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/tools/validate_atomic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/src/atomic_red_team_mcp/tools/validate_atomic.py -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/src/atomic_red_team_mcp/utils/__init__.py -------------------------------------------------------------------------------- /src/atomic_red_team_mcp/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/src/atomic_red_team_mcp/utils/config.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Test suite for Atomic Red Team MCP Server.""" 2 | -------------------------------------------------------------------------------- /tests/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/tests/test_imports.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbuff/atomic-red-team-mcp/HEAD/uv.lock --------------------------------------------------------------------------------