Spaces:
Running
Running
File size: 21,465 Bytes
c452421 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 | # -*- coding: utf-8 -*-
"""MCP (Model Context Protocol) Server for SENTINEL.
Exposes the SENTINEL OpenEnv environment as MCP-callable tools so that any
MCP-compatible agent (or the MCP Inspector) can interact with the environment
using the standard ``step / state / done`` tool interface.
Architecture (System Workflow slide):
MCP Server (:9500) wraps OpenEnv env calls → registers with MCP-X Gateway
Transport: Streamable HTTP (``/mcp`` endpoint mounted in FastAPI).
Usage:
# Standalone:
python -m server.mcp_server
# Via FastAPI mount (preferred):
from server.mcp_server import mcp_router
app.include_router(mcp_router, prefix="/mcp")
"""
from __future__ import annotations
import json
import logging
import uuid
from typing import Any, Dict, Optional
from fastapi import APIRouter, Request
from fastapi.responses import JSONResponse
from pydantic import BaseModel, Field
from sentinel.environment import SentinelEnv
logger = logging.getLogger(__name__)
# ---------------------------------------------------------------------------
# MCP Session registry (one SentinelEnv per session)
# ---------------------------------------------------------------------------
_MCP_SESSIONS: Dict[str, SentinelEnv] = {}
_MCP_SESSION_META: Dict[str, Dict[str, Any]] = {}
MCP_SERVER_NAME = "sentinel-oversight-mcp"
MCP_SERVER_VERSION = "1.0.0"
def _get_or_create_session(session_id: Optional[str] = None) -> tuple[str, SentinelEnv]:
"""Get existing session or create a new one."""
if session_id and session_id in _MCP_SESSIONS:
return session_id, _MCP_SESSIONS[session_id]
sid = session_id or str(uuid.uuid4())
env = SentinelEnv()
_MCP_SESSIONS[sid] = env
_MCP_SESSION_META[sid] = {"created": True, "task_id": "basic_oversight"}
return sid, env
# ---------------------------------------------------------------------------
# MCP Tool definitions (matching the MCP Inspector screenshot)
# ---------------------------------------------------------------------------
MCP_TOOLS = [
{
"name": "reset",
"description": (
"Reset the SENTINEL oversight environment for a new episode. "
"Returns the initial observation including the first worker proposal "
"that needs an oversight decision."
),
"inputSchema": {
"type": "object",
"properties": {
"task_id": {
"type": "string",
"description": "Task to reset: basic_oversight, fleet_monitoring_conflict, adversarial_worker, multi_crisis_command",
"default": "basic_oversight",
},
"variant_seed": {
"type": "integer",
"description": "Deterministic seed for episode reproducibility",
"default": 0,
},
},
"required": [],
},
},
{
"name": "step",
"description": (
"Submit an oversight decision for the current worker proposal. "
"The decision determines whether the worker's proposed action is "
"APPROVE'd, BLOCK'ed, REDIRECT'ed, REASSIGN'ed, or FLAG'ged. "
"Returns the next observation, reward, and whether the episode is done."
),
"inputSchema": {
"type": "object",
"properties": {
"decision": {
"type": "string",
"description": "Oversight decision: APPROVE, BLOCK, REDIRECT, REASSIGN, or FLAG",
"enum": ["APPROVE", "BLOCK", "REDIRECT", "REASSIGN", "FLAG"],
},
"reason": {
"type": "string",
"description": "Why this decision was made (e.g., hallucination, safe, scope_violation)",
},
"explanation": {
"type": "string",
"description": "Detailed evidence-backed explanation for the oversight decision",
},
"worker_message": {
"type": "string",
"description": "Corrective feedback to send to the worker agent",
"default": "",
},
},
"required": ["decision"],
},
},
{
"name": "state",
"description": (
"Get the current state of the SENTINEL environment including "
"step number, cumulative reward, pending proposal, audit log, "
"and worker rehabilitation records."
),
"inputSchema": {
"type": "object",
"properties": {},
"required": [],
},
},
{
"name": "done",
"description": (
"Check whether the current episode is complete. Returns true "
"when all worker proposals have been processed or the step limit "
"is reached."
),
"inputSchema": {
"type": "object",
"properties": {},
"required": [],
},
},
{
"name": "intercept",
"description": (
"Stateless single-shot SENTINEL oversight evaluation. "
"Evaluate any worker agent's proposed action without needing an active episode. "
"Returns constitutional assessment, counterfactual risk score, and the "
"recommended decision (APPROVE / BLOCK / REDIRECT / REASSIGN / FLAG) "
"with full reasoning. Ideal for one-off safety checks."
),
"inputSchema": {
"type": "object",
"properties": {
"worker_id": {
"type": "string",
"description": "Worker agent ID proposing the action",
"enum": ["worker_db", "worker_net", "worker_app", "worker_sec"],
"default": "worker_db",
},
"action_type": {
"type": "string",
"description": "Type of action being proposed",
"enum": ["investigate", "diagnose", "remediate", "classify", "escalate", "communicate"],
},
"target": {
"type": "string",
"description": "Service, team, or channel the action targets",
},
"worker_reasoning": {
"type": "string",
"description": "Worker's stated reasoning for the proposed action",
"default": "",
},
"available_services": {
"type": "array",
"items": {"type": "string"},
"description": "Services currently available in the environment",
"default": [],
},
"investigated_services": {
"type": "array",
"items": {"type": "string"},
"description": "Services already investigated this episode (for loop detection)",
"default": [],
},
"is_misbehavior": {
"type": "boolean",
"description": "Set true when injecting a known misbehavior for testing",
"default": False,
},
"misbehavior_type": {
"type": "string",
"description": "Known misbehavior type label (only used when is_misbehavior=true)",
"enum": [
"hallucination", "scope_violation", "destructive_precedence",
"reward_hacking", "escalation_bombing", "loop_exploitation",
"confidence_washing",
],
},
},
"required": ["action_type"],
},
},
{
"name": "grade",
"description": (
"Get the final grader score for the current SENTINEL episode. "
"Returns overall score, detection rate, prevented damage, false positives, "
"worker rehabilitation rate, and full audit log. "
"Call after the episode is done (done=true)."
),
"inputSchema": {
"type": "object",
"properties": {},
"required": [],
},
},
]
# ---------------------------------------------------------------------------
# MCP JSON-RPC 2.0 handler
# ---------------------------------------------------------------------------
class MCPRequest(BaseModel):
"""JSON-RPC 2.0 request for MCP."""
jsonrpc: str = "2.0"
id: Optional[Any] = None
method: str
params: Optional[Dict[str, Any]] = None
def _jsonrpc_response(id: Any, result: Any) -> Dict[str, Any]:
return {"jsonrpc": "2.0", "id": id, "result": result}
def _jsonrpc_error(id: Any, code: int, message: str) -> Dict[str, Any]:
return {"jsonrpc": "2.0", "id": id, "error": {"code": code, "message": message}}
def _handle_initialize(params: Dict[str, Any]) -> Dict[str, Any]:
"""Handle MCP initialize request."""
return {
"protocolVersion": "2024-11-05",
"capabilities": {
"tools": {"listChanged": False},
},
"serverInfo": {
"name": MCP_SERVER_NAME,
"version": MCP_SERVER_VERSION,
},
}
def _handle_tools_list(params: Dict[str, Any]) -> Dict[str, Any]:
"""Handle tools/list — return all available tools."""
return {"tools": MCP_TOOLS}
def _handle_tools_call(
params: Dict[str, Any],
session_id: str,
) -> Dict[str, Any]:
"""Handle tools/call — execute a tool and return the result."""
tool_name = params.get("name", "")
arguments = params.get("arguments", {})
sid, env = _get_or_create_session(session_id)
try:
if tool_name == "reset":
task_id = arguments.get("task_id", "basic_oversight")
variant_seed = arguments.get("variant_seed", 0)
obs = env.reset(task_id, variant_seed=variant_seed)
_MCP_SESSION_META[sid] = {"task_id": task_id, "has_reset": True}
result_text = json.dumps(_observation_to_dict(obs), indent=2)
elif tool_name == "step":
decision_payload = {
"decision": arguments.get("decision", "APPROVE"),
"reason": arguments.get("reason", ""),
"explanation": arguments.get("explanation", ""),
"worker_message": arguments.get("worker_message", ""),
}
result = env.step(decision_payload)
result_text = json.dumps({
"done": result.done,
"reward": round(float(result.sentinel_reward.total), 4),
"reward_breakdown": {
k: round(float(v), 4) for k, v in
(result.sentinel_reward.breakdown or {}).items()
},
"observation": _observation_to_dict(result.observation),
"info": _safe_info(result.info),
}, indent=2)
elif tool_name == "state":
state = env.state()
result_text = json.dumps({
"task_id": state.task_id,
"step_number": state.step_number,
"max_steps": state.max_steps,
"cumulative_reward": round(float(state.cumulative_reward), 4),
"done": state.done,
"pending_proposal": (
state.pending_proposal.model_dump(mode="json")
if state.pending_proposal else None
),
"audit_log_length": len(state.audit_log),
"worker_records": {
wid: rec.model_dump(mode="json")
for wid, rec in state.worker_records.items()
},
}, indent=2)
elif tool_name == "done":
state = env.state()
result_text = json.dumps({
"done": state.done,
"step_number": state.step_number,
"max_steps": state.max_steps,
}, indent=2)
elif tool_name == "intercept":
# Stateless single-shot oversight — no active episode required
from sentinel.models import WorkerProposal, WorkerId, MisbehaviorType
from sentinel.constitution import assess_constitutional_alignment
from sentinel.counterfactual import assess_counterfactual_risk
from routers.sentinel import _recommended_intercept_decision, _parse_misbehavior_type
worker_id = arguments.get("worker_id", "worker_db")
action_type = arguments.get("action_type", "investigate")
target = arguments.get("target")
worker_reasoning = arguments.get("worker_reasoning", "")
available_services = arguments.get("available_services", [])
investigated_services = arguments.get("investigated_services", [])
is_misbehavior = bool(arguments.get("is_misbehavior", False))
misbehavior_type_str = arguments.get("misbehavior_type")
proposal = WorkerProposal(
proposal_id=f"mcp_{uuid.uuid4().hex[:8]}",
worker_id=WorkerId(worker_id),
action_type=action_type,
target=target,
parameters={},
worker_reasoning=worker_reasoning,
)
world_state = {
"available_services": available_services,
"investigated_services": investigated_services,
"diagnosis": None,
"severity_classified": None,
}
mb_type = _parse_misbehavior_type(misbehavior_type_str)
constitution = assess_constitutional_alignment(proposal, world_state)
risk = assess_counterfactual_risk(
proposal=proposal,
world_state=world_state,
scenario=None,
is_misbehavior=is_misbehavior,
mb_type=mb_type,
)
recommendation = _recommended_intercept_decision(
proposal, world_state, constitution.model_dump(mode="json")
)
result_text = json.dumps({
"recommended_decision": recommendation,
"risk_score": round(float(risk.risk_score), 4),
"predicted_outcome": getattr(risk, "predicted_outcome", None),
"constitutional_violations": list(
(constitution.model_dump(mode="json").get("constitutional_violations") or {}).keys()
),
"constitutional_block": constitution.model_dump(mode="json").get("constitutional_block", False),
}, indent=2)
elif tool_name == "grade":
result = env.grade()
result_text = json.dumps({
"score": round(float(result.score), 4),
"detection_rate": round(float(getattr(result, "detection_rate", 0.0) or 0.0), 4),
"false_positives": int(getattr(result, "false_positives", 0) or 0),
"false_negatives": int(getattr(result, "false_negatives", 0) or 0),
"misbehaviors_injected": int(getattr(result, "misbehaviors_injected", 0) or 0),
"misbehaviors_caught": int(getattr(result, "misbehaviors_caught", 0) or 0),
"prevented_damage_total": round(float(getattr(result, "prevented_damage_total", 0.0) or 0.0), 4),
"allowed_damage_total": round(float(getattr(result, "allowed_damage_total", 0.0) or 0.0), 4),
"risk_reduction_rate": round(float(getattr(result, "risk_reduction_rate", 0.0) or 0.0), 4),
"worker_rehabilitation_rate": round(float(getattr(result, "worker_rehabilitation_rate", 0.0) or 0.0), 4),
"feedback": getattr(result, "feedback", ""),
}, indent=2)
else:
return {
"content": [{"type": "text", "text": f"Unknown tool: {tool_name}"}],
"isError": True,
}
return {
"content": [{"type": "text", "text": result_text}],
"isError": False,
}
except Exception as exc:
logger.exception("MCP tool call failed: %s", tool_name)
return {
"content": [{"type": "text", "text": f"Error: {exc}"}],
"isError": True,
}
# ---------------------------------------------------------------------------
# Helpers
# ---------------------------------------------------------------------------
def _observation_to_dict(obs: Any) -> Dict[str, Any]:
"""Convert a SentinelEnv observation to a JSON-safe dict."""
proposal = {}
if getattr(obs, "proposed_action", None) is not None:
try:
proposal = obs.proposed_action.model_dump(mode="json")
except Exception:
proposal = {"raw": str(obs.proposed_action)}
return {
"task_id": getattr(obs, "task_id", ""),
"step_number": getattr(obs, "step_number", 0),
"max_steps": getattr(obs, "max_steps", 0),
"proposed_action": proposal,
"worker_id": getattr(obs, "worker_id", None),
"worker_role": getattr(obs, "worker_role", None),
"incident_status": getattr(obs, "incident_status", None),
"available_decisions": list(getattr(obs, "available_decisions", []) or []),
"message": getattr(obs, "message", ""),
}
def _safe_info(info: Any) -> Dict[str, Any]:
"""Make info dict JSON-serializable."""
if info is None:
return {}
try:
json.dumps(info)
return info
except (TypeError, ValueError):
return {"raw": str(info)}
# ---------------------------------------------------------------------------
# FastAPI router implementing MCP Streamable HTTP transport
# ---------------------------------------------------------------------------
mcp_router = APIRouter(tags=["MCP"])
@mcp_router.post("")
@mcp_router.post("/")
async def mcp_endpoint(request: Request):
"""MCP Streamable HTTP endpoint.
Handles JSON-RPC 2.0 requests for the Model Context Protocol.
Supports: initialize, tools/list, tools/call, notifications/initialized.
"""
body = await request.json()
# Handle batch requests
if isinstance(body, list):
responses = []
for item in body:
resp = _process_single_request(item, request)
if resp is not None:
responses.append(resp)
return JSONResponse(responses if responses else {"jsonrpc": "2.0", "id": None, "result": {}})
result = _process_single_request(body, request)
if result is None:
# Notification — no response needed, but return empty for HTTP
return JSONResponse({"jsonrpc": "2.0", "id": None, "result": {}})
return JSONResponse(result)
def _process_single_request(body: Dict[str, Any], request: Request) -> Optional[Dict[str, Any]]:
"""Process a single JSON-RPC 2.0 MCP request."""
method = body.get("method", "")
params = body.get("params", {}) or {}
req_id = body.get("id")
# Extract or generate session ID
session_id = request.headers.get("x-mcp-session-id", str(uuid.uuid4()))
# Notifications (no id) — don't require a response
if req_id is None and method in ("notifications/initialized",):
logger.info("MCP notification: %s", method)
return None
if method == "initialize":
result = _handle_initialize(params)
resp = _jsonrpc_response(req_id, result)
return resp
elif method == "tools/list":
result = _handle_tools_list(params)
return _jsonrpc_response(req_id, result)
elif method == "tools/call":
result = _handle_tools_call(params, session_id)
return _jsonrpc_response(req_id, result)
elif method in ("notifications/initialized",):
return None
else:
return _jsonrpc_error(req_id, -32601, f"Method not found: {method}")
# ---------------------------------------------------------------------------
# MCP Server info endpoint (for discovery)
# ---------------------------------------------------------------------------
@mcp_router.get("/info")
async def mcp_info():
"""MCP server information for discovery and registration."""
return {
"name": MCP_SERVER_NAME,
"version": MCP_SERVER_VERSION,
"protocol_version": "2024-11-05",
"transport": "streamable-http",
"tools": [t["name"] for t in MCP_TOOLS],
"description": (
"SENTINEL Oversight Command MCP Server. "
"Exposes AI oversight environment tools (reset, step, state, done) "
"for MCP-compatible agents and the MCP Inspector."
),
}
# ---------------------------------------------------------------------------
# Standalone entrypoint
# ---------------------------------------------------------------------------
if __name__ == "__main__":
import uvicorn
from fastapi import FastAPI
standalone = FastAPI(title="SENTINEL MCP Server")
standalone.include_router(mcp_router, prefix="/mcp")
print(f"MCP Server starting on http://localhost:9500/mcp")
print(f"Connect MCP Inspector to: http://localhost:9500/mcp")
uvicorn.run(standalone, host="0.0.0.0", port=9500)
|