Skip to content

System Tools

Alessio Rocchi edited this page Jan 29, 2026 · 2 revisions

System Tools

3 MCP tools for system monitoring.


Tools

system_status

Get comprehensive system statistics.

Output:

{
  "agents": {
    "active": 3,
    "byStatus": {"idle": 1, "running": 2}
  },
  "memory": {
    "entries": 150,
    "namespaces": ["default", "architecture"]
  },
  "tasks": {
    "pending": 5,
    "processing": 2
  }
}

system_health

Health check for all components.

Output:

{
  "status": "healthy",
  "checks": {
    "database": true,
    "vectorSearch": true,
    "github": false,
    "driftDetection": {
      "enabled": true,
      "embeddingProvider": "openai"
    },
    "consensus": {
      "enabled": true,
      "pendingCheckpoints": 2
    },
    "resourceExhaustion": {
      "enabled": true,
      "agentsTracked": 5,
      "agentsByPhase": {
        "normal": 3,
        "warning": 1,
        "intervention": 1,
        "termination": 0
      },
      "pausedAgents": 1
    }
  }
}

system_config

Get current configuration (sanitized).

Output:

{
  "version": "1.0.0",
  "providers": {...},
  "memory": {...}
}

Related:

Clone this wiki locally