Skip to content

Commit 141d035

Browse files
ArkForgeclaude
andcommitted
Add hosted MCP scanner CTA after CLI scan output
Display a message after each scan pointing CLI users to the hosted MCP scanner at arkforge.fr/mcp. Bump version to 0.1.2. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent dce4c1a commit 141d035

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

eu_ai_act_scanner/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""EU AI Act Scanner — Scan your project for AI framework usage and EU AI Act compliance."""
22

3-
__version__ = "0.1.1"
3+
__version__ = "0.1.2"
44

55
from eu_ai_act_scanner.scanner import EUAIActScanner
66
from eu_ai_act_scanner.gdpr import GDPRScanner

eu_ai_act_scanner/cli.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,14 @@ def cmd_scan(args):
158158
gdpr_report = gdpr.generate_report(gdpr_scan, gdpr_compliance)
159159
print(json.dumps(gdpr_report, indent=2))
160160

161+
# CTA for hosted MCP scanner
162+
if not args.json:
163+
print(_dim("─" * 60))
164+
print(f" {_bold('Hosted MCP scanner available')} — scan without installing anything.")
165+
print(f" Works with Claude, Cursor, Windsurf, and any MCP client.")
166+
print(f" {_blue('https://arkforge.fr/mcp')}")
167+
print()
168+
161169

162170
def main():
163171
parser = argparse.ArgumentParser(

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "eu-ai-act-scanner"
7-
version = "0.1.1"
7+
version = "0.1.2"
88
description = "Scan your project for AI framework usage and check EU AI Act / GDPR compliance"
99
readme = "README.md"
1010
license = "MIT"

0 commit comments

Comments
 (0)