npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ajhochy/rhythm-mcp-server

v0.5.0

Published

MCP server for Rhythm — manage tasks, projects, and rhythms via Claude

Readme

Rhythm MCP Server

Rhythm MCP Server lets you manage tasks, projects, rhythms, messages, and facilities in Rhythm directly from Claude.

Prerequisites

  • Node.js 18 or later
  • A Rhythm account at api.vcrcapps.com
  • Claude Desktop, Claude Code, or any MCP-compatible client

Get your API token

Open Rhythm → Settings → Claude Integration and copy your session token.

Alternatively, obtain one via the API:

curl -X POST https://api.vcrcapps.com/auth/login \
  -H "Content-Type: application/json" \
  -d '{"email": "[email protected]", "password": "yourpassword"}'
# Response: { "sessionToken": "abc123...", "user": { ... } }

Copy the sessionToken value.

Claude Desktop setup

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "rhythm": {
      "command": "npx",
      "args": ["-y", "@ajhochy/rhythm-mcp-server"],
      "env": {
        "RHYTHM_API_URL": "https://api.vcrcapps.com",
        "RHYTHM_API_TOKEN": "paste-your-session-token-here"
      }
    }
  }
}

Restart Claude Desktop after saving.

Claude Code setup

Add to ~/.claude/settings.json (global) or .claude/settings.json (per-project):

{
  "mcpServers": {
    "rhythm": {
      "command": "npx",
      "args": ["-y", "@ajhochy/rhythm-mcp-server"],
      "env": {
        "RHYTHM_API_URL": "https://api.vcrcapps.com",
        "RHYTHM_API_TOKEN": "paste-your-session-token-here"
      }
    }
  }
}

Verify it's working

In Claude, ask: "Call rhythm_ping to check the connection."

Expected response: Rhythm API status and the email address your token authenticates as.

Available tools

| Tool | Description | |------|-------------| | rhythm_ping | Verify connectivity and confirm your token is valid | | rhythm_get_dashboard | Summary snapshot of tasks, projects, rhythms, and threads — start here | | rhythm_list_tasks | List tasks with optional status/date/search filters | | rhythm_create_task | Create a task | | rhythm_update_task | Update task fields (title, notes, due date, status) | | rhythm_complete_task | Mark a task as done | | rhythm_delete_task | Permanently delete a task | | rhythm_list_rhythms | List recurring rules | | rhythm_create_rhythm | Create a recurring rule | | rhythm_update_rhythm | Update or enable/disable a rhythm | | rhythm_delete_rhythm | Delete a rhythm | | rhythm_add_rhythm_step | Add a step to an existing rhythm (v0.4.0+: uses dedicated POST /:id/steps) | | rhythm_delete_rhythm_step | Remove a step from a rhythm | | rhythm_list_project_templates | List project templates | | rhythm_create_project_template | Create a project template | | rhythm_add_project_step | Add a step to a template | | rhythm_create_project_instance | Instantiate a template as an active project | | rhythm_list_project_instances | List active projects with step progress | | rhythm_update_project_step | Mark a project step done or add notes | | rhythm_list_message_threads | List message threads | | rhythm_create_message_thread | Create a message thread | | rhythm_send_message | Send a message to a thread | | rhythm_list_facilities | List facilities | | rhythm_create_reservation | Reserve a facility for a time window | | rhythm_list_automations | List automation rules (optionally filter to enabled) | | rhythm_get_automation | Fetch a single automation rule by ID | | rhythm_create_automation | Create an automation rule (use catalog tools first) | | rhythm_update_automation | Update fields on an automation rule | | rhythm_delete_automation | Permanently delete an automation rule | | rhythm_preview_automation | Inspect last evaluation results / matched signal sample | | rhythm_resync_automation | Manually re-evaluate a rule against fresh signals | | rhythm_list_automation_triggers | Catalog: trigger types + configSchema for connected sources | | rhythm_list_automation_actions | Catalog: action types + configSchema | | rhythm_list_automation_providers | Catalog: provider sources connected for the user |

Automations

To create or update an automation rule, call the catalog tools first to discover valid identifiers and required config shapes:

  1. rhythm_list_automation_providers — see which sources you can use (e.g. planning_center, google_calendar, gmail, plus rhythm built-ins).
  2. rhythm_list_automation_triggers — find a triggerKey matching your chosen source, and read its configSchema for required triggerConfig fields.
  3. rhythm_list_automation_actions — pick an actionType and read its configSchema for required actionConfig fields.

Then call rhythm_create_automation with the discovered keys and configs. Use rhythm_preview_automation to inspect the last matched signal sample, and rhythm_resync_automation to manually re-evaluate against fresh signals.

Troubleshooting

RHYTHM_API_TOKEN environment variable is not set — The token is missing from your MCP config. Double-check the env block in your settings file.

401 errors — Token expired or invalid. Re-fetch a token from Rhythm Settings or re-run the login curl command.

Can't reach API — Confirm RHYTHM_API_URL is set to https://api.vcrcapps.com.

npx fails — Ensure Node.js 18+ is installed: node --version.