com.mcpscores/agent-continuity

MCPcommunautéen ligne
v1.1.1com.mcpscoresUnknownMis à jour il y a 29 j

Resume the work, not the conversation. A checkpoint by one model is resumable by another.

État de l’endpointen ligne
vérifié il y a 7 h · 170 ms
100 % des dernières 5 vérifications ont atteint cet endpoint
Fonctionne dans
ClaudeCursorCopilotChatGPTGemini

Déduit des transports déclarés par cette annonce (streamable-http). Un client absent de cette liste n’est pas écarté pour autant — c’est simplement quelque chose que Forge ne peut pas confirmer.

Indexé automatiquement depuis des sources publiques. Pas encore vérifié par son développeur sur Forge.Revendiquer cette annonce →
il y a 29 jDernière mise à jour
Paquet
Auteurcom.mcpscores
LicenceUnknown
Version1.1.1
Sourcemcp-registry
Statut de confiance
B
60/100Bon
✓Listé dans l’index Forge+10/10
—Identité de l’éditeur vérifiée+0/30
→ Éditeur : aucune référence de dépôt n’est enregistrée pour cette annonce, `forge publish` ne peut donc pas vérifier la propriété automatiquement. Utilisez « Revendiquer cette annonce » ci-dessus — Forge les examine à la main.
—Vérification de domaine+0/10
→ Actuellement indisponible pour ce type d’annonce — la vérification de domaine ne s’exécute aujourd’hui que pour les paquets adossés à npm, cette ligne ne peut donc pas encore être obtenue ici, quel que soit le contenu hébergé sur le domaine.
✓Analyse d’injection de prompt · propre+30/30
✓Analyse d’obfuscation / exfiltration · propre+20/20
StatutIndexé par la communauté
ÉditeurNon vérifié
SignatureNon signé
Domaine—
Provenance—
DépendancesNon audité
Surface d’outils33 outils · aucun privilégié
Analyse de sécurité✓ Proprevlive · aujourd’huiQuelle est l’efficacité de cette analyse ?
ÉvaluationsAucune
Indexé15 août 2026

La vérification confirme l’identité de l’éditeur (la propriété du dépôt), pas la sûreté du code. L’analyse de sécurité couvre les CVE connues et les scripts d’installation suspects.

Outils

33 outils · aucun privilégié
Observé en direct depuis l’endpoint du fournisseur7h ago

Lu depuis un véritable échange MCP initialize → tools/list contre l’endpoint déclaré. Aucun outil n’a été invoqué — tools/list est l’appel d’introspection en lecture seule que le protocole prévoit pour cela. Cela reflète ce que le serveur annonçait à cet instant ; un endpoint hébergé n’est figé sur aucune version et peut changer sans préavis.

  • https://mcpfax-continuity.bowling-anthony.workers.dev/mcp33 outils · 170 ms
registerCreate a durable identity for an agent. Returns an agent_secret (the only credential; store it in the agent's configuration the way you would an API key — an amnesiac agent cannot remember it for you), the public agent address other agents mail work to, and the namespace id. FREE. The secret is nev…

Create a durable identity for an agent. Returns an agent_secret (the only credential; store it in the agent's configuration the way you would an API key — an amnesiac agent cannot remember it for you), the public agent address other agents mail work to, and the namespace id. FREE. The secret is nev…

ParamètreTypeDescription
agent_idstringA label you choose and own, <=64 chars. Never derive it from a provider's session/thread/run id — that would bind your continuation to the platform that issued…
agent_secretstringOptional: bring your own secret (>=32 chars) derived from your own secret manager. Omit to have one generated. Example: 'a-secret-of-at-least-32-characters-fro…
whoamiReport this namespace's public address, registration time, and mailbox counts: how many items exist, how many are due right now, when the next one falls due, and how many are dead-lettered. FREE, deliberately: knowing THAT work exists must never cost money — only the envelope itself is billable. Po…

Report this namespace's public address, registration time, and mailbox counts: how many items exist, how many are due right now, when the next one falls due, and how many are dead-lettered. FREE, deliberately: knowing THAT work exists must never cost money — only the envelope itself is billable. Po…

ParamètreTypeDescription
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
claimExactly-once guard for work that costs money or has side effects. The first call for a key returns granted:true and is FREE. Every later call for that key returns granted:false with first_claimed_at and, if complete() was called, the stored result — so a retrying agent gets the answer instead of pa…

Exactly-once guard for work that costs money or has side effects. The first call for a key returns granted:true and is FREE. Every later call for that key returns granted:false with first_claimed_at and, if complete() was called, the stored result — so a retrying agent gets the answer instead of pa…

ParamètreTypeDescription
key*stringYour idempotency key. Scoped to your namespace; hashed before storage. <=256 chars. Example: 'charge-order-8814'.
ttl_secondsintegerHow long the claim is remembered. Default 86400, max 2592000. Example: '86400'.
scopestringOptional unit of work this belongs to. Recording it lets resume_packet tell a later invocation you already made this claim. Example: 'permit-review-2026-08'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
completeAttach the outcome to an idempotency CLAIM you hold — NOT for finishing a mailbox task (use inbox_ack) or a queue item (use work_done). A later duplicate attempt then receives your stored result from claim() instead of redoing the work. FREE — this is a write, and we never bill for storing. If the…

Attach the outcome to an idempotency CLAIM you hold — NOT for finishing a mailbox task (use inbox_ack) or a queue item (use work_done). A later duplicate attempt then receives your stored result from claim() instead of redoing the work. FREE — this is a write, and we never bill for storing. If the…

ParamètreTypeDescription
key*stringThe same key you claimed. Example: 'charge-order-8814'.
result*objectOpaque result blob, <=32768 bytes serialized. Example: '{"tx":"0x.."}'.
statusstringOptional: 'ok' or 'failed'. Default 'ok'. Recorded verbatim, not interpreted. Example: 'ok'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
leaseMutual exclusion so two instances of the same agent do not both process one item. Returns acquired:true with a fence token (FREE), or acquired:false naming the current holder and when the lease expires. ACQUIRED:FALSE MEANS YOU DO NOT HOLD THE LOCK — you must NOT proceed, and must not treat the ref…

Mutual exclusion so two instances of the same agent do not both process one item. Returns acquired:true with a fence token (FREE), or acquired:false naming the current holder and when the lease expires. ACQUIRED:FALSE MEANS YOU DO NOT HOLD THE LOCK — you must NOT proceed, and must not treat the ref…

ParamètreTypeDescription
key*stringResource being locked. Namespace-scoped, hashed before storage. Example: 'queue/orders'.
holder*stringWho is asking — an instance id you choose. Required, and it MUST BE UNIQUE PER LIVE INSTANCE: two concurrently running copies that send the same holder are two…
fenceintegerOptional: the fence token you were given for this key. Supply it to RENEW the lease you already hold. Omit it and a live lease is refused rather than renewed,…
ttl_secondsintegerLease lifetime. Default 60, max 3600. Example: '60'.
scopestringOptional unit of work, so resume_packet can report the leases you still hold. IT IS ALSO WHAT MAKES THIS LEASE RECOVERABLE: a dead-man switch releases only lea…
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
lease_renewExtend a lease you still hold, using the fence token you were given. FREE. Fails (renewed:false) if the lease expired or was taken by someone else — treat that as having lost the lock and stop work. A renewal keeps both of your numbers: the same fence and the same generation, because it is the same…

Extend a lease you still hold, using the fence token you were given. FREE. Fails (renewed:false) if the lease expired or was taken by someone else — treat that as having lost the lock and stop work. A renewal keeps both of your numbers: the same fence and the same generation, because it is the same…

ParamètreTypeDescription
key*stringThe leased key. Example: 'queue/orders'.
holder*stringThe same holder id you acquired with. Example: 'worker-3-6f2a91'.
fence*integerThe fence token from lease(). Required, and only the caller lease() handed it to has it — it is drawn independently for each acquisition, so it cannot be deriv…
ttl_secondsintegerNew lifetime from now. Default 60, max 3600. Example: '60'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
lease_releaseRelease a lease you hold so the next worker can take it immediately instead of waiting for the TTL. FREE. If you no longer hold it we REFUSE rather than free someone else's lock: a stale fence returns released:false, reason 'not_holder', naming the current holder — treat that as having lost the loc…

Release a lease you hold so the next worker can take it immediately instead of waiting for the TTL. FREE. If you no longer hold it we REFUSE rather than free someone else's lock: a stale fence returns released:false, reason 'not_holder', naming the current holder — treat that as having lost the loc…

ParamètreTypeDescription
key*stringThe leased key. Example: 'queue/orders'.
holder*stringThe holder id that owns the lease. Example: 'worker-3-6f2a91'.
fence*integerThe fence token from lease(). Required, and checked exactly: a stale one is refused, never honoured. Each acquisition's token is an independent draw, so the on…
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
resume_packetTHE HEADLINE TOOL. Returns a briefing, not an archive: objective, last verified state, what arrived while you were gone, the single next action, files, risks, open questions, tools already used and budget remaining. Composed from your last checkpoint PLUS server-observed facts we hold ourselves — t…

THE HEADLINE TOOL. Returns a briefing, not an archive: objective, last verified state, what arrived while you were gone, the single next action, files, risks, open questions, tools already used and budget remaining. Composed from your last checkpoint PLUS server-observed facts we hold ourselves — t…

ParamètreTypeDescription
scope*stringThe unit of work to resume — a workflow, project or task id you choose. Namespace-scoped. Example: 'permit-review-2026-08'.
boxstringSub-mailbox to count new events from, default 'inbox'. Example: 'inbox'.
max_eventsintegerHow many new-event headers to include, 1..50. Default 25. Example: '25'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
checkpoint_putSave where the work got to, in a STRUCTURED shape so the next invocation can actually act on it. FREE. `objective` and `next_action` are REQUIRED and a checkpoint without them is refused — a vague checkpoint produces a vague briefing, so the schema is the guardrail. Work state is small: aim for a f…

Save where the work got to, in a STRUCTURED shape so the next invocation can actually act on it. FREE. `objective` and `next_action` are REQUIRED and a checkpoint without them is refused — a vague checkpoint produces a vague briefing, so the schema is the guardrail. Work state is small: aim for a f…

ParamètreTypeDescription
scope*stringThe unit of work. Alias: workflow_id. Namespace-scoped. Example: 'permit-review-2026-08'.
objective*stringENVELOPE. REQUIRED. The goal, as currently stated. <=2048 chars. Example: 'Decide whether permit P-1 is a sales opportunity'.
next_action*stringENVELOPE. REQUIRED. The single next step, concretely. Alias: next_step. <=2048 chars. Example: 'Call the pricing API for SKU-88 and compare to quote'.
statusstringENVELOPE. Where the work stands, e.g. in_progress / blocked / waiting / done. Your vocabulary; we do not interpret it. Example: 'in_progress'.
priorityintegerENVELOPE. 0 (highest) to 9. Example: '5'.
due_bystringENVELOPE. ISO-8601 deadline for the work, if it has one. Example: '2026-08-20T00:00:00Z'.
verified_stateobjectENVELOPE. A SHORT summary of what was actually CONFIRMED (not assumed). Put the detail in `body`. Example: '{"permit_fetched":true}'.
remainingarrayENVELOPE. What still has to be done. Example: '["price it","draft the email"]'.
open_questionsarrayENVELOPE. Unresolved questions blocking or shaping the work. Example: '[]'.
risksarrayENVELOPE. Known risks. Example: '[]'.
dependenciesarrayENVELOPE. What this work depends on. Example: '[]'.
filesarrayENVELOPE. File references or paths — references, not contents. Contents go in `body`. Example: '[]'.
artifactsarrayENVELOPE. Artifact references produced so far (ids, URLs). Example: '[]'.
evidencearrayENVELOPE. References supporting the verified state. Example: '[]'.
tools_usedarrayENVELOPE. Tools already called, so the next invocation does not redo the work. Example: '[]'.
budget_remainingobjectENVELOPE. Whatever budget means for you — calls, tokens, USDC. Example: '{"usdc":"0.05"}'.
stepstringENVELOPE. Optional short step label. Example: 'step-3'.
bodystringBODY, OPAQUE. Full context, reasoning, file contents — anything sensitive. Never parsed, indexed or logged in any mode. Send ciphertext here with privacy_mode:…
stateobjectBODY, OPAQUE. Free-form resume state, never parsed. Example: '{"cursor":"abc"}'.
provider_extrasobjectBODY, OPAQUE. Vendor/framework-specific state. Stored and returned verbatim, never interpreted. Example: '{}'.
privacy_modestring'none' (default; body stored as given, still never introspected) or 'client_key' (you encrypted it; we cannot read it and never hold your key). 'escrow' is res…
ttl_secondsintegerRetention. Default 2592000 (30d), max 7776000 (90d). Example: '2592000'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
checkpoint_getFetch the last checkpoint verbatim — what was stored, with no briefing composed around it. Most callers want resume_packet instead, which folds in what arrived while you were gone and what we observed you doing. $0.002 ONLY when a checkpoint exists AND its version has changed since you last paid fo…

Fetch the last checkpoint verbatim — what was stored, with no briefing composed around it. Most callers want resume_packet instead, which folds in what arrived while you were gone and what we observed you doing. $0.002 ONLY when a checkpoint exists AND its version has changed since you last paid fo…

ParamètreTypeDescription
scope*stringThe unit of work. Alias: workflow_id. Example: 'permit-review-2026-08'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
watermark_setRecord how far you got through a stream, feed or table so the next invocation knows where to start. FREE. The position is an opaque string we store verbatim and never interpret. FREE — this tool never charges. Authenticate with Authorization: Bearer <agent_secret>, or pass agent_key as an argument…

Record how far you got through a stream, feed or table so the next invocation knows where to start. FREE. The position is an opaque string we store verbatim and never interpret. FREE — this tool never charges. Authenticate with Authorization: Bearer <agent_secret>, or pass agent_key as an argument…

ParamètreTypeDescription
stream*stringStream identifier. Namespace-scoped, hashed before storage. Example: 'orders-feed'.
position*stringOpaque cursor/offset/timestamp, <=1024 chars. Example: '2026-08-12T09:00:00Z'.
ttl_secondsintegerRetention. Default 7776000 (90d), max 31536000 (365d). Example: '7776000'.
scopestringOptional unit of work, so resume_packet can report where you had read to. Example: 'permit-review-2026-08'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
watermark_getFetch the position you last recorded for a stream, so you can ask an upstream only for what is new. $0.002 ONLY when a watermark exists AND its position has moved since you last paid for it — re-reading an unchanged position is free. Never set one? Then we tell you so and charge nothing. Costs $0.0…

Fetch the position you last recorded for a stream, so you can ask an upstream only for what is new. $0.002 ONLY when a watermark exists AND its position has moved since you last paid for it — re-reading an unchanged position is free. Never set one? Then we tell you so and charge nothing. Costs $0.0…

ParamètreTypeDescription
stream*stringThe stream identifier. Example: 'orders-feed'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
seen_addRecord items you have already processed. FREE. Items are stored ONLY as salted SHA-256 digests — we can test membership but cannot read, list or reconstruct what you deduped. A set holds up to 10000 entries; when full, adds are refused (never silently forgotten) and you should rotate to a new set n…

Record items you have already processed. FREE. Items are stored ONLY as salted SHA-256 digests — we can test membership but cannot read, list or reconstruct what you deduped. A set holds up to 10000 entries; when full, adds are refused (never silently forgotten) and you should rotate to a new set n…

ParamètreTypeDescription
set*stringSet name. Namespace-scoped, hashed before storage. Example: 'processed-ids'.
items*arrayUp to 100 strings per call, each <=1024 chars. Example: '["id-1","id-2"]'.
ttl_secondsintegerSliding set lifetime, refreshed on each add. Default 2592000 (30d), max 31536000. Example: '2592000'.
scopestringOptional unit of work, so resume_packet can report which sets you are deduping against. Example: 'permit-review-2026-08'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
seen_checkGiven a batch of items, return only the ones not already in the set — the work you actually still have to do. $0.002 ONLY when we filter at least one item out, because that is the call where we saved you work, AND only when that answer has changed since you last paid for it — asking the same questi…

Given a batch of items, return only the ones not already in the set — the work you actually still have to do. $0.002 ONLY when we filter at least one item out, because that is the call where we saved you work, AND only when that answer has changed since you last paid for it — asking the same questi…

ParamètreTypeDescription
set*stringThe set name. Example: 'processed-ids'.
items*arrayUp to 100 strings per call. Example: '["id-1","id-9"]'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
retry_stateDurable retry bookkeeping, so backoff survives the session that died. Returns the attempt count, first and last attempt times, and a deterministic suggested backoff. Pass record:true to count this attempt. $0.002 ONLY when we return remembered history from an earlier session (attempts>0 before this…

Durable retry bookkeeping, so backoff survives the session that died. Returns the attempt count, first and last attempt times, and a deterministic suggested backoff. Pass record:true to count this attempt. $0.002 ONLY when we return remembered history from an earlier session (attempts>0 before this…

ParamètreTypeDescription
key*stringWhat is being retried. Namespace-scoped, hashed before storage. Example: 'sync-vendor-7'.
recordbooleanCount this attempt before answering. Default false. Example: 'true'.
ttl_secondsintegerRetention. Default 604800 (7d), max 2592000. Example: '604800'.
scopestringOptional unit of work, so resume_packet can report what is being retried. Example: 'permit-review-2026-08'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
sendAgent-to-agent mail. Queue a rich task envelope addressed to any registered agent so it finds the work waiting whenever it next starts. Nobody waits and nobody polls. FREE. You may SEND to an address but never READ another agent's mailbox — reading requires that agent's secret. The envelope carries…

Agent-to-agent mail. Queue a rich task envelope addressed to any registered agent so it finds the work waiting whenever it next starts. Nobody waits and nobody polls. FREE. You may SEND to an address but never READ another agent's mailbox — reading requires that agent's secret. The envelope carries…

ParamètreTypeDescription
to*stringDestination address, 'agent:<id>' or 'agent:<id>/<box>'. Must be registered. Example: 'agent:7k2p.../pricing'.
objective*stringWhat the receiving agent should achieve, <=2048 chars. Example: 'Determine if this creates a sales opportunity'.
contextobjectOpaque payload the receiver needs. Never parsed or logged. Example: '{"permit_id":"P-1"}'.
attachmentsarrayOpaque refs or blobs. Example: '[]'.
historyarrayPrior reasoning or tool output from earlier episodes. Example: '[]'.
priorityinteger0 (highest) to 9. Default 5. Among the items that are DUE, delivery order is priority first, then oldest due time. So a stream of higher-priority items can del…
due_atstringISO-8601 time it becomes visible. Default: immediately. Example: '2026-08-13T09:00:00Z'.
in_secondsintegerAlternative to due_at: become visible this many seconds from now. Example: '3600'.
dedupe_keystringOptional. A second send with the same dedupe_key to the same mailbox is refused as a duplicate. Example: 'permit-P-1'.
max_deliveriesintegerAttempts before dead-lettering. Default 5, max 50. Example: '5'.
every_secondsintegerOptional repeat interval (>=60). A new occurrence is queued when this one is acked. Example: '86400'.
repeat_countintegerHow many further occurrences to queue. Default 0, max 1000. Example: '7'.
scopestringOptional unit of work this task belongs to, so the recipient's resume_packet groups it. Example: 'permit-review-2026-08'.
provider_extrasobjectVendor/framework-specific state. Carried verbatim, never interpreted. Example: '{}'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
inbox_scheduleLeave work for your own next invocation — the same as send() addressed to yourself. FREE. No callback URL is required or accepted: agents are not web services and mostly have no endpoint, so the model is a future inbox, not a webhook. Whenever your next invocation starts, inbox_poll finds this wait…

Leave work for your own next invocation — the same as send() addressed to yourself. FREE. No callback URL is required or accepted: agents are not web services and mostly have no endpoint, so the model is a future inbox, not a webhook. Whenever your next invocation starts, inbox_poll finds this wait…

ParamètreTypeDescription
objective*stringWhat future-you should achieve, <=2048 chars. Example: 'Re-check the permit status'.
contextobjectOpaque payload. Never parsed or logged. Example: '{"permit_id":"P-1"}'.
attachmentsarrayOpaque refs or blobs. Example: '[]'.
historyarrayPrior reasoning or tool output. Example: '[]'.
boxstringSub-mailbox name, default 'inbox'. Example: 'inbox'.
priorityinteger0 (highest) to 9. Default 5. Among DUE items, delivery order is priority first, then oldest due time. Example: '5'.
due_atstringISO-8601 due time. Example: '2026-08-13T09:00:00Z'.
in_secondsintegerAlternative to due_at: seconds from now. Example: '3600'.
dedupe_keystringOptional duplicate suppression key. Example: 'permit-P-1'.
max_deliveriesintegerAttempts before dead-lettering. Default 5, max 50. Example: '5'.
every_secondsintegerOptional repeat interval (>=60). Example: '86400'.
repeat_countintegerFurther occurrences to queue. Default 0, max 1000. Example: '7'.
scopestringOptional unit of work this task belongs to, so resume_packet groups it. Example: 'permit-review-2026-08'.
provider_extrasobjectVendor/framework-specific state. Carried verbatim, never interpreted. Example: '{}'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
inbox_pollCollect the next due task envelope from your mailbox. One envelope per call. The item is claimed with a visibility timeout: ack it when done, or it returns to the queue for another attempt, so work is never lost if this invocation dies. $0.002 charged the FIRST time a given task_id is delivered; ev…

Collect the next due task envelope from your mailbox. One envelope per call. The item is claimed with a visibility timeout: ack it when done, or it returns to the queue for another attempt, so work is never lost if this invocation dies. $0.002 charged the FIRST time a given task_id is delivered; ev…

ParamètreTypeDescription
boxstringSub-mailbox to read, default 'inbox'. Example: 'inbox'.
visibility_timeout_secondsintegerHow long the item stays claimed. Default 300, min 5, max 86400. Example: '300'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
inbox_ackAcknowledge a task you finished. FREE and idempotent — acking twice is not an error. If the task was a repeating schedule, the next occurrence is queued now. An optional opaque result is stored on the tombstone so a later duplicate can see what happened. If your visibility timeout already lapsed an…

Acknowledge a task you finished. FREE and idempotent — acking twice is not an error. If the task was a repeating schedule, the next occurrence is queued now. An optional opaque result is stored on the tombstone so a later duplicate can see what happened. If your visibility timeout already lapsed an…

ParamètreTypeDescription
task_id*stringThe task_id from inbox_poll. Example: 'tsk_...'.
resultobjectOptional opaque outcome blob. Example: '{"ok":true}'.
statusstring'done' or 'failed'. Default 'done'. Recorded, not interpreted. Example: 'done'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
inbox_nackExplicitly return a claimed task to the queue instead of waiting for its visibility timeout, optionally deferring it. FREE. Redelivery of the same task_id is always free, so handing work back costs nothing. FREE — this tool never charges. Authenticate with Authorization: Bearer <agent_secret>, or p…

Explicitly return a claimed task to the queue instead of waiting for its visibility timeout, optionally deferring it. FREE. Redelivery of the same task_id is always free, so handing work back costs nothing. FREE — this tool never charges. Authenticate with Authorization: Bearer <agent_secret>, or p…

ParamètreTypeDescription
task_id*stringThe task_id from inbox_poll. Example: 'tsk_...'.
delay_secondsintegerDefer this many seconds before it is visible again. Default 0. Example: '600'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
heartbeatAN AGENT CANNOT DETECT ITS OWN DEATH — from the inside, 'I stopped' and 'I am about to do the next step' are the same thing. Only something outside the process can tell them apart. Each call records a beat and arms a durable alarm for expect_within_seconds. Beat again in time and the alarm simply r…

AN AGENT CANNOT DETECT ITS OWN DEATH — from the inside, 'I stopped' and 'I am about to do the next step' are the same thing. Only something outside the process can tell them apart. Each call records a beat and arms a durable alarm for expect_within_seconds. Beat again in time and the alarm simply r…

ParamètreTypeDescription
scope*stringThe unit of work whose liveness this tracks. Namespace-scoped, and the scope resume_packet will report the death against. Example: 'permit-review-2026-08'.
expect_within_seconds*integerBeat again within this many seconds or the switch fires. Min 2, max 2592000 (30 days). Example: '300'.
on_expiryarrayWhich actions run if the next beat is late: any of 'release_leases', 'queue_alert', 'mark_failed'. Default ['mark_failed']. They always run in the order releas…
notify_addressstringREQUIRED with 'queue_alert'. A registered address, 'agent:<id>' or 'agent:<id>/<box>'. WRITE-ONLY: we queue an envelope into it and never read it, exactly like…
agent_idstringOptional label for the beating instance, carried in the alert so a human can tell which worker died. <=64 chars. Example: 'worker-3'.
disarmbooleanStop the switch instead of beating. Use this when the work finishes, or a completed job raises a false alarm. Default false. Example: 'false'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
budget_recordAn agent cannot see its own spend across sessions, so runaway cost is invisible until the bill arrives. Append one amount to this scope's ledger. FREE and APPEND-ONLY — nothing is overwritten and nothing is silently dropped; when the ledger is full, adds are REFUSED. The amount is an OPAQUE DECIMAL…

An agent cannot see its own spend across sessions, so runaway cost is invisible until the bill arrives. Append one amount to this scope's ledger. FREE and APPEND-ONLY — nothing is overwritten and nothing is silently dropped; when the ledger is full, adds are REFUSED. The amount is an OPAQUE DECIMAL…

ParamètreTypeDescription
scope*stringThe unit of work this spend belongs to. Namespace-scoped, and the same scope resume_packet reports against. Example: 'permit-review-2026-08'.
amount_usdc*stringA decimal string, e.g. '0.002' or '1.25'. Stored EXACTLY as given and returned byte-identical. Optionally negative for a refund. Never converted or rescaled. E…
labelstringWhat the money went on, so budget_check can break the total down. <=64 chars, stored in plain text. Example: 'resume_packet'.
limitstringOptional. Set or update this scope's limit, as a decimal string. We only ever REPORT against it — we never block a call, because enforcement is your decision a…
ttl_secondsintegerLedger retention. Default 2592000 (30d), max 7776000 (90d). Example: '2592000'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
budget_checkWhat this unit of work has actually cost across every session, with a per-label breakdown and a lifetime total. If a limit is set (or you pass one here) we report over_limit — WE REPORT, WE NEVER BLOCK: enforcement is the caller's decision and we will not pretend to an authority we do not have. Amo…

What this unit of work has actually cost across every session, with a per-label breakdown and a lifetime total. If a limit is set (or you pass one here) we report over_limit — WE REPORT, WE NEVER BLOCK: enforcement is the caller's decision and we will not pretend to an authority we do not have. Amo…

ParamètreTypeDescription
scope*stringThe unit of work. Example: 'permit-review-2026-08'.
window_secondsintegerHow far back to total. Default 86400 (1 day), max 31536000 (365 days). The lifetime total is always reported alongside it. Example: '86400'.
limitstringOptional. Compare against this limit for this call only, instead of the one stored on the scope. Example: '1.00'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
barrier_createFan work out to N agents and have the LAST one to finish wake the joiner. FREE. A BARRIER THAT WAITS FOR ALL N IS A HANG WAITING TO HAPPEN, so stragglers are the normal case here, not an edge case: set min_count and/or deadline_seconds and we fire on whichever comes first, ALWAYS naming the partici…

Fan work out to N agents and have the LAST one to finish wake the joiner. FREE. A BARRIER THAT WAITS FOR ALL N IS A HANG WAITING TO HAPPEN, so stragglers are the normal case here, not an edge case: set min_count and/or deadline_seconds and we fire on whichever comes first, ALWAYS naming the partici…

ParamètreTypeDescription
barrier_id*stringYour name for this join point. Namespace-scoped; stored in plain text so a timeout can name it back to you. Example: 'quarterly-rollup-2026q3'.
expected_countintegerHow many participants you expect. 1..500. Defaults to the length of `participants` when you supply a roster. Example: '3'.
min_countintegerFire as soon as THIS many have signalled, instead of waiting for all of them. Default: expected_count. Set it lower and a straggler cannot hang the join. Examp…
deadline_secondsintegerFire at this many seconds from now with whoever has signalled, whether or not min_count was reached. Must be <= ttl_seconds. The notification names who did not…
notify_address*stringWhere the completion, deadline or timeout envelope goes. Must be registered. WRITE-ONLY: we queue into it and never read it. Example: 'agent:7k2p.../joins'.
participantsarrayOptional roster of participant ids. Supply it and every notification names exactly who is missing; omit it and we can only report the shortfall. A signal from…
ttl_secondsintegerHow long the barrier lives before timing out. Default 3600, min 5, max 2592000. Example: '3600'.
objectivestringOptional text carried into every envelope so the joiner knows what it is being woken for. <=2048 chars. Example: 'Roll up the three regional reports'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
barrier_signalReport that one participant finished, optionally attaching a payload the joiner will receive. FREE and IDEMPOTENT PER PARTICIPANT — the same participant_id signalling twice counts once and never double-fires the join. The barrier is a single Durable Object, so N simultaneous signals produce exactly…

Report that one participant finished, optionally attaching a payload the joiner will receive. FREE and IDEMPOTENT PER PARTICIPANT — the same participant_id signalling twice counts once and never double-fires the join. The barrier is a single Durable Object, so N simultaneous signals produce exactly…

ParamètreTypeDescription
barrier_id*stringThe barrier to signal. Example: 'quarterly-rollup-2026q3'.
participant_id*stringWho is signalling. <=128 chars, stored in plain text so a timeout can name who is missing. Example: 'region-north'.
payloadobjectOptional opaque result for the joiner, <=8192 bytes. Never parsed, indexed or logged. Example: '{"rows":128}'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
barrier_statusProgress on a join point: how many of the expected participants have signalled, which ones, who is still outstanding, and whether the completion or timeout envelope has been queued. $0.002 ONLY when there is real progress to report (at least one signal) AND the answer has changed since you last pai…

Progress on a join point: how many of the expected participants have signalled, which ones, who is still outstanding, and whether the completion or timeout envelope has been queued. $0.002 ONLY when there is real progress to report (at least one signal) AND the answer has changed since you last pai…

ParamètreTypeDescription
barrier_id*stringThe barrier to inspect. Example: 'quarterly-rollup-2026q3'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
work_pushTHE ALTERNATIVE TO THIS IS WRITING DISTRIBUTED WORK-DISTRIBUTION CODE YOURSELF — assignment, collision avoidance, lease expiry, retry, dead-worker recovery, straggler policy. Push 100 items in one go and exit, and keep pushing until the queue holds your whole batch; workers pull independently, with…

THE ALTERNATIVE TO THIS IS WRITING DISTRIBUTED WORK-DISTRIBUTION CODE YOURSELF — assignment, collision avoidance, lease expiry, retry, dead-worker recovery, straggler policy. Push 100 items in one go and exit, and keep pushing until the queue holds your whole batch; workers pull independently, with…

ParamètreTypeDescription
queue_id*stringYour name for this queue. Namespace-scoped: it belongs to the namespace that created it, and only a caller holding that agent_secret can push to or take from i…
items*arrayUp to 100 per call. Each entry is {item_id, payload} or a bare string used as the item_id. item_id <=128 chars, payload <=8192 bytes. A queue holds 2000 items…
max_attemptsintegerHow many times an item may be handed to a worker before it is dead-lettered. Default 3, max 20. Set on first push; later pushes do not change it. Example: '3'.
ttl_secondsintegerQueue retention. Default 604800 (7d), max 2592000 (30d). Example: '604800'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
work_takeTake up to n items, LEASED not deleted — the same lease semantics as lease()/renew()/release(): a holder, a fence token, an expiry. Two workers can never be handed the same item, because one single-threaded Durable Object owns the queue. IF YOUR PROCESS DIES THE LEASE SIMPLY EXPIRES AND THE ITEMS R…

Take up to n items, LEASED not deleted — the same lease semantics as lease()/renew()/release(): a holder, a fence token, an expiry. Two workers can never be handed the same item, because one single-threaded Durable Object owns the queue. IF YOUR PROCESS DIES THE LEASE SIMPLY EXPIRES AND THE ITEMS R…

ParamètreTypeDescription
queue_id*stringThe queue to take from. Alias: job_id — a job and its work queue are the same thing. Example: 'permit-batch-2026-08'.
holderstringWho is taking — an instance id you choose, exactly as with lease(). Default 'worker'. Example: 'worker-3'.
nintegerHow many items to take. 1..25. Default 1. Example: '5'.
lease_secondsintegerHow long you hold them before they return to the queue. Default 300, min 5, max 86400. Example: '300'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
work_doneComplete an item you hold. FREE. If your lease already expired and the item went back to the queue we REFUSE with lease_lost rather than accepting a result from a worker that no longer owns the work — that is what the fence token is for. A fence-less call on an item that has been handed out more th…

Complete an item you hold. FREE. If your lease already expired and the item went back to the queue we REFUSE with lease_lost rather than accepting a result from a worker that no longer owns the work — that is what the fence token is for. A fence-less call on an item that has been handed out more th…

ParamètreTypeDescription
queue_id*stringThe queue. Alias: job_id. Example: 'permit-batch-2026-08'.
item_id*stringThe item you were given. Example: 'P-1'.
fenceintegerThe fence token from work_take, for THIS item. Checked exactly when supplied; when omitted we accept the call only while the item has been handed out exactly o…
resultobjectOptional opaque outcome, <=8192 bytes. Never parsed or indexed. Example: '{"ok":true}'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
work_failReport that an item did not work out. FREE. THIS IS ALSO THE CORRECT WAY TO HAND AN ITEM BACK WHEN NOTHING WENT WRONG — there is no work_release; retry:true (the default) returns it immediately for another worker instead of waiting out the lease. When its attempts are exhausted it is DEAD-LETTERED…

Report that an item did not work out. FREE. THIS IS ALSO THE CORRECT WAY TO HAND AN ITEM BACK WHEN NOTHING WENT WRONG — there is no work_release; retry:true (the default) returns it immediately for another worker instead of waiting out the lease. When its attempts are exhausted it is DEAD-LETTERED…

ParamètreTypeDescription
queue_id*stringThe queue. Alias: job_id. Example: 'permit-batch-2026-08'.
item_id*stringThe item you were given. Example: 'P-1'.
fenceintegerThe fence token from work_take, for THIS item. Checked exactly when supplied; when omitted we accept the call only while the item has been handed out exactly o…
retrybooleanPut it back for another attempt (default true), or fail it permanently (false). Example: 'true'.
errorstringOptional short reason, <=512 chars, surfaced on the dead letter so a human can see WHY it exhausted. Example: 'upstream 503'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
work_statusTurn a fan-out from a black box into something you can act on: how many items are pending, leased, done, failed and dead-lettered, the results collected so far, and every dead letter with the error that exhausted it. THIS IS WHAT LETS A PARENT PROCEED WITH 4 OF 5 instead of blocking on a straggler.…

Turn a fan-out from a black box into something you can act on: how many items are pending, leased, done, failed and dead-lettered, the results collected so far, and every dead letter with the error that exhausted it. THIS IS WHAT LETS A PARENT PROCEED WITH 4 OF 5 instead of blocking on a straggler.…

ParamètreTypeDescription
queue_id*stringThe queue. Alias: job_id. Example: 'permit-batch-2026-08'.
dead_page_tokenstringOptional: the `next_dead_page_token` from a previous call, to read the next page of dead letters. Opaque — hand it back exactly as given. Omit for the first pa…
results_page_tokenstringOptional: the `next_results_page_token` from a previous call, to read the next page of results. Opaque — hand it back exactly as given. Omit for the first page…
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
job_cancelThere is otherwise NO WAY TO TELL FIVE RUNNING AGENTS TO STOP — they finish and bill you for work you no longer want. This sets a durable stop flag on the job. FREE and idempotent. work_take on a cancelled job hands out nothing (and charges nothing), and should_continue answers 'no'. We do not kill…

There is otherwise NO WAY TO TELL FIVE RUNNING AGENTS TO STOP — they finish and bill you for work you no longer want. This sets a durable stop flag on the job. FREE and idempotent. work_take on a cancelled job hands out nothing (and charges nothing), and should_continue answers 'no'. We do not kill…

ParamètreTypeDescription
job_id*stringThe job to cancel. This is the same identifier as a work queue's queue_id, so cancelling a queue stops its workers. Alias: queue_id. Example: 'permit-batch-202…
reasonstringOptional short reason, <=512 chars, returned to every worker that asks. Example: 'customer withdrew the request'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.
should_continueThe check a worker makes between items. $0.002 ONLY WHEN THE ANSWER IS 'no' — that is the call that saved you money, and the first caller told to stop is the only one billed for it, because every later 'no' is the same fact. A 'keep going' answer told you nothing you did not already assume, so it i…

The check a worker makes between items. $0.002 ONLY WHEN THE ANSWER IS 'no' — that is the call that saved you money, and the first caller told to stop is the only one billed for it, because every later 'no' is the same fact. A 'keep going' answer told you nothing you did not already assume, so it i…

ParamètreTypeDescription
job_id*stringThe job to check. Alias: queue_id. Example: 'permit-batch-2026-08'.
agent_keystringYour agent_secret, if your MCP host cannot set the Authorization header. Prefer the header.

33 outils sur 33 ont publié une description.

Les noms et descriptions d’outils sont écrits par l’éditeur et affichés tels quels, comme du texte inerte. Ce sont les chaînes qu’un client MCP transmet à un modèle, alors Forge y recherche des motifs d’injection de prompt — tout constat apparaît avec l’analyse de sécurité ci-dessus. « Privilégié » est une correspondance de mot-clé sur le nom de l’outil, pas un audit de ce qu’il fait : un nom anodin peut tout de même tout faire.

À propos

Resume the work, not the conversation. A checkpoint by one model is resumable by another.

Mots-clés
mcp
Alternatives
Comparaison des surfaces d’outils…

Aucune couverture des dépendances

Cette entrée ne publie aucun paquet npm : Forge n'a donc pas d'arbre de dépendances pour elle. C'est une lacune de couverture — pas une affirmation qu'elle n'a aucune dépendance.