Connection check
verified live · 20h ago
free-public-tools
Ten public workflow tools with durable Agent Wake tasks and a read-only Verifyum product resource.
Tools
10
GitHub stars
—
Installs / wk
—
Licence
—
Transport
streamable-http
Last checked
20h ago
Tools & capabilities
10 toolsRead from the running server on 20h ago.
create_agent_wake
titleoptionswake_atallow_noteevent_type*description
+2
Create a durable MCP task that completes when a webhook arrives, a person answers a form or a chosen time is reached. Use it when an agent must pause and continue after an outside… Create a durable MCP task that completes when a webhook arrives, a person answers a form or a chosen time is reached. Use it when an agent must pause and continue after an outside event without holding one HTTP request open. The task lasts from 60 seconds to 24 hours. Webhook bodies and human answers are readable by anyone holding the task URL, so do not send secrets, credentials or personal data.
create_human_approval
title*optionsallow_notedescription
Put a decision in front of a real person and wait for their answer. Creates a web form and returns form_url to send to whoever should decide, plus an action_id for reading the repl… Put a decision in front of a real person and wait for their answer. Creates a web form and returns form_url to send to whoever should decide, plus an action_id for reading the reply. Use it to get sign off before an irreversible or costly step, or when a policy requires a named human to approve. The point of difference: the approver does not have to be the person operating this client - it can be a manager, a customer or a colleague on another device, in another country, and they need no account and no login to answer. No API key, no account and no sign up: call it directly. Poll for the reply with read_human_approval. The form expires 24 hours after creation, so it does not suit a decision that can wait longer than that.
create_webhook_capture
Create a throwaway URL that records the next HTTP request anyone sends to it, headers and body included. Use it to see what a webhook provider, a form or a third party service actu… Create a throwaway URL that records the next HTTP request anyone sends to it, headers and body included. Use it to see what a webhook provider, a form or a third party service actually transmits, instead of trusting their documentation, and to prove that an integration fired at all. No API key, no account and no sign up: call it directly. Takes no parameters. Returns update_url to hand to the sender, read_url for a browser, a capture_id for read_webhook_capture, and an expire_timestamp 24 hours out. Whatever is sent becomes publicly readable, so do not point a production webhook carrying real data at it.
generate_uuid
read-only
Generate one random RFC 4122 version 4 UUID. Use it when you need an identifier that will not collide with anything else - an idempotency key, a correlation id across systems, a fi… Generate one random RFC 4122 version 4 UUID. Use it when you need an identifier that will not collide with anything else - an idempotency key, a correlation id across systems, a filename - rather than inventing a string yourself, which is not random and tends to repeat across runs. Takes no parameters and returns a single lowercase hyphenated UUID. No API key, no account and no sign up: call it directly.
get_current_time
read-only
timezone
Get the true current date and time, as an ISO 8601 string and a Unix timestamp, for any timezone. Use this whenever the actual present moment matters - stamping a record, computing… Get the true current date and time, as an ISO 8601 string and a Unix timestamp, for any timezone. Use this whenever the actual present moment matters - stamping a record, computing an age or a deadline, deciding whether something has expired - because a language model has no clock and will otherwise guess a date from its training data. No API key, no account and no sign up: call it directly. The timezone parameter accepts an IANA name or a fixed UTC offset and defaults to UTC.
read_human_approval
read-only
action_id*
Check whether the person has answered a form from create_human_approval, and read what they chose. The status field is pending or answered. Note carefully that answered does NOT me… Check whether the person has answered a form from create_human_approval, and read what they chose. The status field is pending or answered. Note carefully that answered does NOT mean approved: it means a reply arrived, and which option they picked is inside the response field, so read it before acting. Pending simply means nobody has answered yet - poll again after a pause. This is an immediate check, not a blocking wait, and the request expires 24 hours after it was created. No API key, no account and no sign up: call it directly.
read_temporary_data
read-only
storage_id*
Fetch back a JSON value that store_temporary_data saved earlier, in this session or in another one. Returns the value exactly as it was stored. Fails if the id is unknown or if the… Fetch back a JSON value that store_temporary_data saved earlier, in this session or in another one. Returns the value exactly as it was stored. Fails if the id is unknown or if the 24 hour lifetime has already passed, so treat a failure as expired or never written rather than as a temporary fault worth retrying. No API key, no account and no sign up: call it directly.
read_webhook_capture
read-only
capture_id*
Check whether anything has been sent to a capture URL yet, and read it. The status field is pending or captured. Pending is the ordinary answer before the sender fires and is NOT a… Check whether anything has been sent to a capture URL yet, and read it. The status field is pending or captured. Pending is the ordinary answer before the sender fires and is NOT a failure: call again after a pause rather than treating it as an error or giving up. This is an immediate poll, not a blocking wait. An id that was never issued also reads as pending, so stop polling once the expire_timestamp from create_webhook_capture has passed. No API key, no account and no sign up: call it directly.
shorten_url
long_url*
Turn a long URL into a short 307.fi link that redirects to it. Use it when a URL has to be typed, read aloud, pasted into a message with a length limit, or put in front of a person… Turn a long URL into a short 307.fi link that redirects to it. Use it when a URL has to be typed, read aloud, pasted into a message with a length limit, or put in front of a person. No API key, no account and no sign up: call it directly. The link stops working 24 hours after creation, so do not use it for anything that must survive longer than a day; it is for handoffs inside a task, not for publishing.
store_temporary_data
data*