Actor Model · Capability
Actor System Management
Workflow for managing actor lifecycle, message passing, supervision hierarchies, and cluster operations in distributed actor model systems. Used by platform engineers and distributed systems developers.
What You Can Do
GET
List actors
— List all active actors
/v1/actors
POST
Spawn actor
— Spawn a new actor
/v1/actors
GET
Get health
— Get system health
/v1/health
MCP Tools
list-actors
List all actors in the system filtered by status
read-only
get-actor
Get details of a specific actor including mailbox size and restart count
read-only
send-message
Send a typed message to an actor's mailbox for asynchronous processing
inspect-mailbox
Inspect pending messages in an actor's mailbox for debugging
read-only
list-supervisors
List supervisors with their strategies and child actor counts
read-only
list-cluster-members
List all cluster nodes with their status, roles, and actor counts
read-only
get-health
Get actor system health including throughput, error rate, and dead letter count
read-only
APIs Used
actor-model