LoopPause MCP server β pause agent execution and route human approval requests
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
MCP server for LoopPause β pause AI agent execution and route approval requests to humans via Slack or email. The agent receives a cryptographically signed proof of the human's decision and resumes.
"The missing primitive so agents don't go rogue β or die waiting for approval."
Exposes three MCP tools: request_approval, check_approval, and verify_proof
request_approval β sends the approval request to the human and returns a pause_id immediatelycheck_approval β polls once for the decision; call repeatedly until decision is "approved" or "rejected"verify_proof β verifies the signed proof against LoopPause's published Ed25519 public key; call before executing any irreversible actionThis three-step pattern keeps each tool call short, avoids long-running connections, and gives the agent explicit cryptographic verification before proceeding. No shared secret required β any party with the published public key can independently verify the proof.
| Environment variable | Required | Description |
|---|---|---|
LOOPPAUSE_API_KEY | β Yes | Your LoopPause API key (sk_live_β¦) |
LOOPPAUSE_API_URL | No | Override the API base URL (default: https://api.looppause.com) |
Get your API key at looppause.com/dashboard.
Add to your .claude/settings.json (or ~/.claude/settings.json for global):
Add to your Cursor MCP configuration:
request_approvalSends the approval request and returns immediately. Do not proceed with the action until check_approval returns { decision: "approved" }.
When both recipient_slack and recipient_email are provided, Slack is the
primary channel and email is the fallback.
Returns:
check_approvalChecks the current status of an approval request. Call repeatedly until decision is "approved" or "rejected". Never proceed while status is "pending".
Returns (pending):
Returns (responded):
| Status | Meaning |
|---|---|
pending | Human has not responded yet β call again |
responded | Human responded β check response.decision |
timed_out | No response within timeout_hours |
expired | Pause was manually cancelled |
verify_proofVerifies the Ed25519 signature on a proof returned by check_approval. Call this before executing any irreversible action. Returns immediately β no long-running connection.
Returns (valid):
Returns (invalid):
Public key discovery: GET https://looppause.com/.well-known/looppause-signing-key.json β match the proof's signing_key_id against the served key_id.
All proofs are signed with LoopPause's Ed25519 key. No shared secret required β
any party holding the published public key can independently verify the proof.
Use verifyLoopPauseProof (fetches the key automatically) or call verify_proof
via MCP:
For offline/air-gapped verification, pin the public key once:
Public key discovery: GET https://looppause.com/.well-known/looppause-signing-key.json
(match the proof's signing_key_id against the served key_id).
Webhook verification. Unlike per-customer symmetric schemes, LoopPause's Ed25519 signatures are independently verifiable by any third party holding the published public key β a bank, an auditor, a FIDO AP2 mandate checker β without contacting LoopPause and without holding a shared secret.
Legacy HMAC-SHA256 webhooks ("sha256=<hex>" signatures) remain verifiable
with your LOOPPAUSE_SIGNING_SECRET as before; Ed25519 is the default for
all new proof payloads.
This package includes smithery.yaml for automatic configuration injection.
@looppause/mcp to npm@looppause/mcpsmithery.yaml and present a UI for users to enter their API key@looppause/mcp@looppause/mcp β LoopPause human-in-the-loop approval toolMIT
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/looppause)<a href="https://allmcps.com/mcp/looppause"><img src="https://allmcps.com/api/badge/looppause?style=directory" alt="Looppause on AllMCPs" /></a>