[loopsense@cloud ~]$ clients --supported
[loopsense@cloud ~]$ demo --play
// Watch an AI agent use LoopSense to close a CI feedback loop in real time.
[loopsense@cloud ~]$ diagnose --agent-blindness
[loopsense@cloud ~]$ describe --problem AI agents are great at writing code. They are terrible at knowing what happens next. > Push to GitHub → did CI pass? ← agent has no idea > Run npm build → did it compile? ← agent has no idea > Deploy to Railway → is it healthy? ← agent has no idea > Run a migration → did it succeed? ← agent has no idea So they wait. Or they guess. Or they ask you.
[loopsense@cloud ~]$ describe --solution LoopSense is an MCP server that gives your agent a real-time event feed. It watches CI, processes, files, URLs, and webhooks — and fires structured events the moment something happens. Your agent stops guessing. It knows.
[loopsense@cloud ~]$ explain --loop
// LoopSense closes the feedback loop so your agent never has to block and wait.
# After your deploy, build, and health-check all finish: $ mcp call check_consequences \ --action-id deploy-prod-2847 # Returns all correlated events across every watcher { "action_id": "deploy-prod-2847", "events": [ci.success, process.exit_0, url.200_ok] }
[loopsense@cloud ~]$ ls --watches
// CI runs, processes, files, HTTP endpoints, webhooks — all reporting back to your agent.
Subscribe to GitHub Actions, GitLab CI, CircleCI, and Bitbucket Pipelines. Fast-polls at 5s, backs off to 30s. Auto-closes on completion. Your agent gets the result the moment it lands.
Spawn any command — npm build, pytest, cargo test. Stream stdout/stderr live as events. Get the exit code when it finishes.
Watch files or directories for changes. Detect when codegen writes output, migrations land, or builds finish writing to disk.
Poll any HTTP endpoint on a schedule. Verify your deploy is healthy after going live. Alert on downtime or unexpected status codes.
Receive real-time GitHub push, PR, and deployment webhooks — or hook in Vercel, Stripe, and any service. HMAC signature verification included. No exposed ports needed.
[loopsense@cloud ~]$ ls --integrations
// GitHub webhooks deliver push, PR, and deployment events in real-time — no polling needed.
[loopsense@cloud ~]$ cat features.json
Tag multiple watchers to one logical task, then query all consequences at once with check_consequences(action_id).
Works with Claude Code, Cursor, Codex, VS Code Copilot — any client that speaks the Model Context Protocol.
Teams share one server with full data isolation per API key. No cross-tenant event leakage, ever.
Agents that don't support push can call poll_events at any time to pull new events without missing anything.
claude mcp add loopsense-cloud --transport http --url https://mcp.loopsense.dev/mcp --header "Authorization: Bearer $LOOPSENSE_KEY"
[loopsense@cloud ~]$ cat pricing.md
// Start free, scale when you need to.
[loopsense@cloud ~]$ quickstart --steps
# Connect Claude Code in one command $ claude mcp add loopsense-cloud \ --transport http \ --url https://mcp.loopsense.dev/mcp \ --header "Authorization: Bearer $LOOPSENSE_KEY"