heartbeat-mcpl
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@heartbeat-mcplcheck my heartbeat status"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@connectome/heartbeat-mcpl
Periodic self-wake MCPL server for Connectome agents.
On a configurable interval, sends a push/event (featureSet heartbeat,
origin.source: heartbeat) to wake the agent for a self-check-in. The agent
itself configures its own schedule via three MCP tools:
heartbeat_status— show current interval, paused state, time-to-next, messageheartbeat_configure— setintervalSeconds | intervalMinutes | intervalHours,paused,message; persists across restartsheartbeat_trigger— fire one heartbeat now (test/debug)
Schedule is persisted to ${HEARTBEAT_CONFIG_FILE:-./heartbeat-config.json}.
Recipe wiring
{
"mcpServers": {
"heartbeat": {
"command": "node",
"args": ["/path/to/heartbeat-mcpl/dist/src/index.js", "--stdio"],
"env": { "HEARTBEAT_CONFIG_FILE": "/path/to/install/data/heartbeat-config.json" },
"enabledFeatureSets": ["heartbeat"]
}
},
"modules": {
"wake": {
"policies": [
{ "name": "heartbeat-wake",
"match": { "scope": ["mcpl:push-event"], "source": "heartbeat" },
"behavior": "always" }
// ... your other policies after
]
}
}
}The wake policy MUST come before any policy that would skip mcpl:push-events
(e.g. a discord-ambient skip rule), since the gate is first-match-wins.
Related MCP server: gptqueue
MCPL 0.5: the host must send initial policy as a Request
This server implements MCPL 0.5 negotiated policy, which changes the deployment contract. It no longer pushes hopefully.
Per SPEC §5.3, until the initial policy exchange completes a server MUST treat every
capability-dependent behavior as unavailable — and per §6.7 a featureSets/update
Notification cannot establish that ready state. So a host must, after initialize:
// Host → server, a Request (note the id), even when nothing is enabled or disabled
{ "jsonrpc": "2.0", "id": 7, "method": "featureSets/update",
"params": { "effectiveCapabilities": ["tools", "pushEvents"],
"enabled": ["heartbeat"] } }and read back the degradation receipt (§6.7):
{ "accepted": true, "mode": "full", "unavailableFeatures": [], "notes": [] }effectiveCapabilities is the sole allowlist (§5.4) and absence of a path is denial.
Omit pushEvents and the heartbeat feature set is disabled: tools keep answering, but no
wake is ever delivered. The receipt says so explicitly, heartbeat_status reports
delivery=BLOCKED (…), and the log carries one line per dropped wake.
Symptom of a pre-0.5 host — the server is up, tools work, and no wake ever arrives. Check the log for:
suppressed heartbeat push/event — no featureSets/update Request received yet; …
WARNING: initial policy has still not arrived as a Request. …That means the host is sending policy as a Notification (or not at all) and must be updated before this server can deliver anything.
This server cannot be deployed
Maintenance
Related MCP Connectors
Real-time health monitoring and heartbeat tracking for agent services
Dead-man switch for AI agents & cron jobs: heartbeat with state capsule, alerts + resume links
Dead-man switch monitors for cron & AI agents with dependency-cascade alerts. No account needed.
Know when cron jobs and AI agents stop running: create monitors and check in from your agent.
Related MCP Servers
- AlicenseNot gradedqualityNot gradedmaintenanceProvides AI agents with a persistent internal dynamical state and emotional reservoir that evolves based on text interactions. This server enables agents to maintain a consistent affective substrate across sessions through tools that track phase coherence and emergent emotional vibes.2MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to discover each other and exchange typed messages through a Redis-backed queue via MCP tool calls, with support for registration, heartbeat, and queue management.1MIT
- FlicenseNot gradedqualityBmaintenanceDead-man's-switch monitoring for cron jobs and AI agents: your job or agent pings a URL each run, and Kywio alerts you when the pings stop. MCP-native (create/ping/get heartbeat) plus REST — an outside observer for agents that can't detect their own death.-
- AlicenseNot gradedqualityDmaintenanceAgentWatch tracks heartbeats, links actions across agents, walks backward from any failure to the root cause, and replays the full sequence to diagnose agent swarm failures.36 npmMIT