222 Claude loops · Guided build · One-line deploy

Build Claude Loops
that just keep running.

A Claude loop is a trigger → agent → tools → output cycle that runs on a schedule, event, or command. ClaudeLoops gives you the guides, the working code, and the one-line deploy for every loop worth building.

LIVE LOOP07:00 · every day
Trigger
cron · webhook
Agent
Claude 3.5
Tools
MCP · HTTP
Output
Slack · PR
→ loops back on next trigger repeat
// press Test loop and watch it run →
REMOTE MCP SERVER · LIVE

The Remote MCP Server
for Claude.

Plug Claude Desktop, Claude Code, and Projects into one secure URL. Lockers, secrets, and workflow graphs — without shipping API keys to the model.

  • Zero raw-secret exposure. Tools return metadata or run server-side.
  • Every call audited. Tool, args, latency, payload size — live below.
  • Auth-scoped lockers. Anon sees public packs. Sign in to unlock private workspaces.
Server descriptor
claude_desktop_config.json
{
  "mcpServers": {
    "claudeloops": {
      "url": "https://claudelocker.lovable.app/api/mcp",
      "transport": "streamable-http",
      "headers": { "Authorization": "Bearer lk_demo_<your-token>" }
    }
  }
}
Paste into Claude Desktop → Settings → Developer → MCP Servers. Restart Claude. Done.
Audit log· 0 calls
No calls yet. Run the test suite to populate the audit log.
ANATOMY

Every Claude loop has four parts.

Master these four and you can build any loop on the site. Every guide is structured around them, so shipping the fifth loop feels like shipping the first.

01

Trigger

Cron, webhook, Slack command, GitHub event, or a manual /run. When should the loop wake up?

02

Agent

A Claude prompt with a clear role, memory, and tools. Skinny system prompt, generous examples.

03

Tools

MCP servers, HTTP calls, database queries. Each tool is one verb Claude can invoke, no more.

04

Output

Slack, PR, email, dashboard, ticket. The loop is only real when someone can see or use the result.

FEATURED LOOPS

Loops teams ship this week.

All 222 loops
Growth
NOT DEPLOYED 8m

Nightly competitor scan → Slack digest

Wake up to a 5-bullet diff of every competitor page that changed overnight.

// press Test to run · Watch to stream · Deploy to make it real
Sales
NOT DEPLOYED 12m

Inbound lead → enriched CRM row

HMAC-verified webhook → Claude enrichment → HubSpot upsert with score.

// press Test to run · Watch to stream · Deploy to make it real
Claude Code
NOT DEPLOYED 15m

PR review → risk-tagged comment

Claude Code reviews every PR and posts a risk-banded comment with suggested tests.

// press Test to run · Watch to stream · Deploy to make it real
Finance
NOT DEPLOYED 10m

Weekly investor update generator

Stripe + Postgres metrics → narrative artifact → Resend to your investor list.

// press Test to run · Watch to stream · Deploy to make it real
Productivity
NOT DEPLOYED 5m

Voice memo → Linear ticket

Drop an .m4a, get a spec doc and a Linear issue with acceptance criteria.

// press Test to run · Watch to stream · Deploy to make it real
RAG
NOT DEPLOYED 20m

RAG over private wiki with citations

Notion → pgvector → Claude with strict citation schema.

// press Test to run · Watch to stream · Deploy to make it real
LOOPS BY CATEGORY

Find the loop for your day.

Ten categories. 222 loops. Each with the exact secrets, MCP servers, prompt, code, and deploy command.

Loops that ride inside your repo — PR reviewers, test-gap finders, changelog writers.

Claude Code
NOT DEPLOYED 15m

PR review → risk-tagged comment

Claude Code reviews every PR and posts a risk-banded comment with suggested tests.

// press Test to run · Watch to stream · Deploy to make it real
Claude Code
NOT DEPLOYED 18m

Test synthesizer for changed files

Claude Code writes Vitest + Playwright tests for every file touched in a PR.

// press Test to run · Watch to stream · Deploy to make it real
Claude Code
NOT DEPLOYED 16m

Schema diff → migrations bot

Claude Code reads schema.prisma diffs, writes safe SQL with rollback notes.

// press Test to run · Watch to stream · Deploy to make it real
Claude Code
NOT DEPLOYED 12m

GitHub issue auto-triage

New issue → labeled, assigned, and linked to similar issues in 8 seconds.

// press Test to run · Watch to stream · Deploy to make it real
Claude Code
NOT DEPLOYED 19m

Claude Code doc auto-sync

When code changes, the matching docs page changes in the same PR.

// press Test to run · Watch to stream · Deploy to make it real
Claude Code
NOT DEPLOYED 6m

PR title linter

Auto-rewrites unhelpful PR titles into conventional commits.

// press Test to run · Watch to stream · Deploy to make it real
BUILD A LOOP

From zero to running loop in three commands.

Every loop on ClaudeLoops installs the same way. Clone the loop, bind your secrets, deploy. The CLI wires the MCP server, schedules the trigger, and streams logs back.

# 1. Clone any loop from the library
$ npx claudeloops init nightly-competitor-scan
# 2. Bind the secrets it needs (or grant with an existing locker)
$ claudeloops secrets link ANTHROPIC_API_KEY SLACK_BOT_TOKEN
# 3. Deploy — trigger, agent, tools and output wired in one shot
$ claudeloops deploy
✓ Loop live · runs 07:00 Europe/London · Slack #growth
  • A guide, not a gist

    Every loop opens with the problem, the outcome, and a step list — the code is the last thing, not the first.

  • Secrets stay in your locker

    The CLI binds env vars from your locker. Claude and MCP tools see references, never raw values.

  • Auditable by design

    Every loop run writes a trace: inputs, tool calls, outputs. Replay any run, diff any change.

  • Schedules & webhooks built-in

    Cron, GitHub events, Slack slash commands, and Stripe webhooks are one config line, not a side project.

Your next loop is already written.

Skip the blank prompt and the glue code. Pick a Claude loop, follow the guide, ship it in an afternoon.