{% extends "base.html" %} {% set page_title = "Runtime" %} {% block title %}Runtime | Suvra{% endblock %} {% block content %}

Runtime Engine

Workflow engine, MCP server registry, and agent-to-agent gateway. Agent-to-agent delegation is policy-gated and audited through the same enforcement engine as every other action.

Workflows

{{ runtime_summary.total_workflows }}

{{ runtime_summary.active_workflows }} active

Runs

{{ runtime_summary.total_runs }}

{{ runtime_summary.completed_runs }} done {{ runtime_summary.failed_runs }} failed

MCP Servers

{{ runtime_summary.mcp_servers }}

A2A Messages

{{ runtime_summary.a2a_messages }}

{% if workflows %}

Workflows

Preview — in-memory durability
{% for wf in workflows %} {% endfor %}
NameStepsTriggerCreated
{{ wf.name }}
{{ wf.description }}
{{ wf.step_count }} {{ wf.trigger or 'manual' }} {{ wf.created_at[:10] if wf.created_at else '—' }}
{% endif %} {% if mcp_servers %}

MCP Servers

Preview — registry only
{% for srv in mcp_servers %} {% endfor %}
Server IDStatus
{{ srv.server_id }} {{ srv.status }}
{% endif %} {% if a2a_messages %}

A2A Messages

{% for msg in a2a_messages %} {% endfor %}
FromToTaskStatus
{{ msg.from_agent_id }} {{ msg.to_agent_id }} {{ msg.task }} {{ msg.status }}
{% endif %} {% if not workflows and not mcp_servers %}

No workflows registered yet

Create your first workflow:

curl -X POST localhost:8000/v2/runtime/workflows \
  -H 'Content-Type: application/json' \
  -d '{"workflow_id": "wf1", "name": "Deploy Pipeline"}'
{% endif %} {% endblock %}