mcp-bastion-python 1.0.15__tar.gz → 1.0.16__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mcp_bastion_python-1.0.16/.gitignore +44 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/PKG-INFO +210 -209
- mcp_bastion_python-1.0.16/README.md +806 -0
- mcp_bastion_python-1.0.16/dashboard/README.md +64 -0
- mcp_bastion_python-1.0.16/dashboard/app.py +1767 -0
- mcp_bastion_python-1.0.16/dashboard/static/chart.umd.js.map +1 -0
- mcp_bastion_python-1.0.16/dashboard/static/dashboard-app.js +1101 -0
- mcp_bastion_python-1.0.16/dashboard/static/mcp-bastian.png +0 -0
- mcp_bastion_python-1.0.16/dashboard/static/mcp-bastian.svg +10 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/pyproject.toml +7 -7
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/__init__.py +1 -1
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/cli.py +81 -6
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/config.py +4 -0
- mcp_bastion_python-1.0.16/src/mcp_bastion/demo_dashboard_metrics.py +231 -0
- mcp_bastion_python-1.0.16/src/mcp_bastion/demo_live_traffic.py +110 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/metrics.py +174 -12
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/pii_redaction.py +15 -4
- mcp_bastion_python-1.0.15/.gitignore +0 -37
- mcp_bastion_python-1.0.15/CHANGELOG.md +0 -24
- mcp_bastion_python-1.0.15/README.md +0 -805
- mcp_bastion_python-1.0.15/dashboard/README.md +0 -68
- mcp_bastion_python-1.0.15/dashboard/app.py +0 -1559
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/LICENSE +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/NOTICE +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/dashboard/static/chart.umd.min.js +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/base.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/doctor.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/errors.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/governance_beacon.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/middleware.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/otel.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/__init__.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/alerts.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/audit_hash_chain.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/audit_log.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/circuit_breaker.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/content_filter.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/cost_tracker.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/external_policy.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/pricing.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/prompt_guard.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/rate_limit.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/rbac.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/replay_guard.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/schema_validation.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/semantic_cache.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/semantic_firewall.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/sensitive_classifier.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/pillars/telemetry_sinks.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/policy_simulator.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/redteam.py +0 -0
- {mcp_bastion_python-1.0.15 → mcp_bastion_python-1.0.16}/src/mcp_bastion/tenant.py +0 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
__pycache__/
|
|
2
|
+
*.py[cod]
|
|
3
|
+
*.egg-info/
|
|
4
|
+
*.egg
|
|
5
|
+
dist/
|
|
6
|
+
build/
|
|
7
|
+
.eggs/
|
|
8
|
+
node_modules/
|
|
9
|
+
*.log
|
|
10
|
+
.env
|
|
11
|
+
.env.local
|
|
12
|
+
.env.*.local
|
|
13
|
+
.venv/
|
|
14
|
+
venv/
|
|
15
|
+
.DS_Store
|
|
16
|
+
*.tsbuildinfo
|
|
17
|
+
.coverage
|
|
18
|
+
htmlcov/
|
|
19
|
+
coverage.xml
|
|
20
|
+
.pytest_cache/
|
|
21
|
+
.mypy_cache/
|
|
22
|
+
|
|
23
|
+
# Ad-hoc Windows scripts and wrappers (use `git add -f path` to commit one on purpose)
|
|
24
|
+
*.ps1
|
|
25
|
+
!run-dashboard.ps1
|
|
26
|
+
!scripts/validate-ci-local.ps1
|
|
27
|
+
!tests/run_inspector_test.ps1
|
|
28
|
+
*.cmd
|
|
29
|
+
!run-dashboard.cmd
|
|
30
|
+
*.bat
|
|
31
|
+
|
|
32
|
+
# Windows / editors / merge cruft
|
|
33
|
+
Thumbs.db
|
|
34
|
+
ehthumbs.db
|
|
35
|
+
Desktop.ini
|
|
36
|
+
*.stackdump
|
|
37
|
+
*.orig
|
|
38
|
+
*.bak
|
|
39
|
+
*~
|
|
40
|
+
.vs/
|
|
41
|
+
|
|
42
|
+
# Local config (optional: remove to track bastion.yaml)
|
|
43
|
+
# bastion.yaml
|
|
44
|
+
|