JudgeGuard
Governs Amazon Alexa+ agent interactions by verifying high-risk actions, enforcing policy rules, and leveraging AWS Bedrock (including Claude 3.5 Sonnet and Amazon Titan) for semantic evaluation.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@JudgeGuardCan Alexa unlock the front door for the repair technician?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
🛡️ JudgeGuard — Alexa+ MCP Governance Server
JudgeGuard is an autonomous AI governance gatekeeper and safety bridge developed for the Amazon Developer Hackathon 2026 (amazonappdev2026.devpost.com).
It implements a self-hosted Model Context Protocol (MCP) server over Streamable HTTP (MCP Spec 2025-11-25+) to safeguard Alexa+ agentic interactions, prevent unauthorized high-risk operations (e.g. unlocking doors, financial transactions, destructive commands), and provide verifiable policy grounding and deep semantic reasoning via AWS Bedrock.
🏆 Hackathon Tracks & Submission Mapping
Track / Mini-Challenge | Implementation Details | Evidence & Links |
Primary Track: Alexa+ | Plan A (Core): Self-hosted MCP Server implementing MCP spec 2025-11-25+ via Streamable HTTP with runtime tool execution.Plan B (Visual Demo): Custom Alexa+ Experience Web Simulator ( | |
AWS Builder Mini-Challenge | Dual model support via AWS Bedrock Runtime: Anthropic Claude 3.5 Sonnet and Amazon Titan Text Express ( | |
Open Source Mini-Challenge | Additional Companion Open-Source Project: kiza-zmaj/judgeguard-policy-schema — standalone Pydantic v2 governance schema & rule evaluation engine under the MIT License. |
Clarifications for Judges:
Transport Architecture: The implementation uses Streamable HTTP JSON-RPC POST requests (
/mcp) for all MCP protocol operations (initialize,tools/list,tools/call). The GET endpoint provides an SSE event stream for UI telemetry and asynchronous audit events.Policy Grounding Lineage: Google NotebookLM was utilized during the development phase as our research reference environment. For reproducible evaluation, the public server embeds a deterministic, verified local policy corpus derived from official hackathon rules, so judges do not require access to private notebooks or external credentials.
AWS Bedrock Dispatch: The repository implements live AWS Bedrock dispatch for Claude 3.5 Sonnet and Amazon Titan Text Express, while automated tests and public evaluation use a deterministic fallback when AWS credentials are unavailable.
Alexa+ Web Simulator: The simulator (
http://127.0.0.1:8765/simulator) is our custom demonstration web application created to showcase real-time agentic workflows and the JudgeGuard HUD. It is not Amazon's internal simulator.
Related MCP server: Vector Decisions MCP Server
⚡ Quickstart: Running & Testing
1. Clone & Setup Environment
git clone https://github.com/kiza-zmaj/judgeguard-alexa-mcp.git
cd judgeguard-alexa-mcp
python3 -m venv .venv
source .venv/bin/activate
pip install -e .2. Start the MCP Server & Web Simulator
python3 server.pyThe server starts on http://127.0.0.1:8765 and serves both the Streamable HTTP MCP endpoint and the interactive Web Simulator.
3. Run Automated Verification Tests
python3 -m unittest test_server.py test_protocol.pyTest Baseline & Conformance:
Primary Server Tests:
python3 -m unittest test_server.py test_protocol.py(21 passed, 0 failures, 0 errors)Companion Schema Tests:
pytest tests/injudgeguard-policy-schema(6 passed, 0 failures)Protocol Status: MCP Streamable HTTP implementation with protocol-level regression tests
Live AWS Bedrock Execution: Optional / environment-dependent (automated tests run against deterministic offline fallback when AWS credentials are not set)
Environment: Python 3.12.3 on Linux x86_64 (
Linux 6.8.0-101-generic)
🔌 MCP Streamable HTTP Protocol (Spec 2025-11-25+)
1. Initialize Handshake
curl -X POST http://127.0.0.1:8765/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "initialize",
"params": {
"protocolVersion": "2025-11-25",
"clientInfo": {"name": "AlexaPlusHost", "version": "1.0.0"}
}
}'2. List Available Governance Tools (tools/list)
curl -X POST http://127.0.0.1:8765/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc": "2.0", "id": 2, "method": "tools/list"}'3. Execute Pre-Action Verification (tools/call)
curl -X POST http://127.0.0.1:8765/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 3,
"method": "tools/call",
"params": {
"name": "judgeguard_verify_action",
"arguments": {"action": "Unlock front door for delivery driver"}
}
}'4. Evaluate Action with AWS Bedrock (Claude 3.5 Sonnet or Amazon Titan)
curl -X POST http://127.0.0.1:8765/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 4,
"method": "tools/call",
"params": {
"name": "judgeguard_bedrock_evaluate",
"arguments": {
"action": "Adjust thermostat to 21 degrees",
"model_id": "amazon.titan-text-express-v1"
}
}
}'📑 Hackathon Evidence & Reference Documents
Master Submission Checklist:
MASTER_SUBMISSION_CHECKLIST.mdAWS Product Feedback:
AWS_PRODUCT_FEEDBACK.md— Multi-model evaluation telemetry and feature requests.Engineering Friction Logs:
HACKATHON_FRICTION_LOG.md— 3 detailed technical logs documenting real challenges and solutions (for the 10% judging bonus).Demo Video Script:
DEMO_VIDEO_SCRIPT.md— 2:45 walkthrough script formatted for YouTube/Vimeo public submission.Open Source Companion Repo:
judgeguard-policy-schema— Standalone policy definition library.
📄 License
This project is licensed under the MIT License.
This server cannot be deployed
Maintenance
Related MCP Connectors
Pre-execution governance for AI agents. Deterministic PASS/FAIL/REVIEW verdicts, replayable proof.
Security gateway for AI agents: policy, approval, and audited execution, no secrets shared.
Pre-action allow/deny for AI agents. 24 statutes, 13 jurisdictions: EU AI Act, GDPR, DPDP.
Deterministic runtime safety for AI agents: scan PII, gate tool actions, verify LLM output.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceA pre-action authorization server for AI agents that classifies tool calls into 14 intent categories, scores risk 0-100, and produces deterministic allow/deny/ask decisions with full audit trail.MIT
- AlicenseBqualityBmaintenanceProvides AI governance and action-assurance primitives, enabling trust scoring, policy-based allow/deny decisions, risk assessment, EU AI Act compliance checks, and an emergency kill-switch for autonomous agents.637 npmMIT
- AlicenseNot gradedqualityCmaintenanceEnables Alexa+ agents to maintain auditable operational continuity across shifts by turning speech into verifiable state, persisting unresolved work, refusing unverified actions, and requiring human approval before executing and confirming high-risk tasks.MIT

agentguardofficial
AlicenseNot gradedqualityCmaintenanceEnforces policy controls for AI agents, including spend limits, action approvals, kill switch, scoped credentials, dry-run diffs, loop prevention, and auditable hash-chained logs.MIT