● Server Status
MCP
Checking...
⚡ Version
A2A
—
🛠️ Tools Loaded
—
🏛️ ML Floors
—
📦 Resources
—
📝 Prompts
—
🔌 Active Providers
Loading...
🔧 Available Tools
—
Loading...
🤖 Agent Integration (WebMCP / A2A)
// Connect to arifOS via WebMCP (Server-Sent Events)
const eventSource = new EventSource('/webmcp');
eventSource.onmessage = (event) => {
const data = JSON.parse(event.data);
console.log('Constitutional verdict:', data.verdict);
};
// Or use A2A discovery for agent-to-agent negotiation
const discovery = await fetch('/a2a/discovery');
const agentCard = await discovery.json();