Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Heartbeat Mcpl

FreeNot checked

Periodically sends heartbeat events to wake Connectome agents for self-check-in, with configurable interval and management tools.

GitHubEmbed

About

Periodically sends heartbeat events to wake Connectome agents for self-check-in, with configurable interval and management tools.

README

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, message
  • heartbeat_configure — set intervalSeconds | intervalMinutes | intervalHours, paused, message; persists across restarts
  • heartbeat_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.

from github.com/anima-research/heartbeat-mcpl

Installing Heartbeat Mcpl

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/anima-research/heartbeat-mcpl

FAQ

Is Heartbeat Mcpl MCP free?

Yes, Heartbeat Mcpl MCP is free — one-click install via Unyly at no cost.

Does Heartbeat Mcpl need an API key?

No, Heartbeat Mcpl runs without API keys or environment variables.

Is Heartbeat Mcpl hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Heartbeat Mcpl in Claude Desktop, Claude Code or Cursor?

Open Heartbeat Mcpl on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Heartbeat Mcpl with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs