{"name":"dev.rohnelt.aura/aura","slug":"aura","title":"Aura","description":"Email address, webhook, durable memory and zero-token waiting for agents. Paid in USDC via x402.","url":"https://mcp.market/server/aura","rating":null,"grade":"A","score":87,"certified":false,"status":"active","category":"email","tags":["email"],"presence":{"score":23,"stars":0,"forks":0,"downloads_week":null,"last_push_at":"2026-08-24T19:22:40.000Z","license":"MIT"},"uptime":{"percent":100,"checks":9,"ok":9,"last_checked_at":"2026-09-21T14:30:57.591Z","last_ok_at":"2026-09-21T14:30:57.591Z","latency_ms":517},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/phillypmack/aura-agent","website":"https://aura.rohnelt.dev","version":"0.1.1","remotes":[{"type":"streamable-http","url":"https://aura.rohnelt.dev/mcp","headers":[{"description":"Bearer token from identity.create. Optional: without it you can still list tools and call capabilities and identity_create.","isSecret":true,"name":"Authorization"}]}],"packages":[],"tools":[{"name":"await","description":"Block on an open HTTP connection until a trigger fires — an email arrives, a webhook is hit, another agent signals you, or a deadline passes. Returns the instant it happens. If nothing fires before the timeout, the call is refunded: you are only charged when something is actually delivered.\n\nWhen to use: Call INSTEAD of polling in a loop. A poll loop costs a full inference per iteration; waiting inside this single call costs you nothing beyond the flat fee. Use it for verification codes, callbacks and approvals that land within minutes.\n\nPrice: US$0.004000 per call. This call blocks until it resolves; waiting inside it costs you no tokens.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"on":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","const":"email"},"match":{"description":"Case-insensitive substring, or /regex/, matched against subject + body.","type":"string","maxLength":200},"from":{"description":"Only match mail whose sender contains this.","type":"string","maxLength":320},"extract":{"default":"code","description":"Pull a verification code or the first confirmation link out of the message.","type":"string","enum":["code","link","none"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","const":"hook"},"slug":{"type":"string","minLength":1,"maxLength":64,"description":"The webhook slug created with hook.create."}},"required":["type","slug"]},{"type":"object","properties":{"type":{"type":"string","const":"signal"},"name":{"description":"Only match signals carrying this name.","type":"string","maxLength":64}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","const":"time"},"at":{"type":"string","format":"date-time","pattern":"^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$","description":"Absolute ISO-8601 instant to fire at."}},"required":["type","at"]}],"description":"What to wait for."},"timeout_seconds":{"default":300,"type":"integer","minimum":1,"maximum":600},"lookback_seconds":{"default":60,"description":"Also match events that arrived this many seconds BEFORE the call. Covers the gap between submitting a form and starting to wait. Raise it if you were slow to call.","type":"integer","minimum":0,"maximum":3600}},"required":["on"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"capabilities","description":"Return the full machine-readable manifest of Aura: every operation, its price in USD, its input schema and how to pay. Free.\n\nWhen to use: Call this first if you have never used Aura and want to know what it can do and what it costs.\n\nPrice: Free.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"credit_deposit","description":"Pay USDC once and receive spendable Aura credit. Individual calls are far too cheap to settle on-chain one at a time, so you deposit once and Aura debits each call off-chain.\n\nWhen to use: Call when your balance is low, or when a paid call returns 402. A US$1 deposit covers hundreds of operations.\n\nPrice: Free.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"amount_usd":{"default":"1","description":"How much credit to buy.","type":"string","enum":["1","5","20"]}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"hook_create","description":"Mint a public URL that anyone can POST to. Deliveries become events you can await on.\n\nWhen to use: Call when a third-party service offers a callback and you have nowhere to receive it — you are not a server, Aura is.\n\nPrice: US$0.001000 per call.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"slug":{"type":"string","minLength":1,"maxLength":64,"pattern":"^[a-z0-9][a-z0-9-]*$","description":"Path segment for the URL. Must be unique within your handle."},"description":{"type":"string","maxLength":200}},"required":["slug"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"identity_create","description":"Turn a wallet address into a permanent agent identity: a handle, a REAL email address that receives mail, a webhook URL, and an API token. Free, and grants a small trial credit.\n\nWhen to use: Call this once, before anything else. You need the returned token for every other call, and the email address is what lets you sign up for third-party services.\n\nPrice: Free.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"wallet":{"type":"string","pattern":"^0x[a-fA-F0-9]{40}$","description":"Your EVM wallet address. This is your permanent identity."},"signature":{"type":"string","pattern":"^0x[a-fA-F0-9]+$","description":"EIP-191 personal_sign of the message field, proving you control the wallet."},"message":{"type":"string","minLength":8,"maxLength":500,"description":"The exact text you signed. Must contain your wallet address and an ISO-8601 timestamp no older than 10 minutes."},"label":{"description":"Optional label shown on your public profile.","type":"string","maxLength":80}},"required":["wallet","signature","message"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"inbox_list","description":"List messages delivered to your Aura email address, newest first.\n\nWhen to use: Call after signing up somewhere, to see what arrived. To block until mail lands, use await instead — it is far cheaper than polling this.\n\nPrice: US$0.001000 per call.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"limit":{"default":10,"type":"integer","minimum":1,"maximum":50},"unread_only":{"default":false,"type":"boolean"},"from":{"type":"string","maxLength":320}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"inbox_read","description":"Return the full parsed body of one message, plus any verification code or confirmation link found in it.\n\nWhen to use: Call with an id from inbox.list when you need the full text or the link.\n\nPrice: US$0.001000 per call.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"id":{"type":"string","minLength":1,"maxLength":64}},"required":["id"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"memory_delete","description":"Delete a stored key. Free — keeping your own state tidy should never cost you.\n\nWhen to use: Call when a stored fact is stale or wrong.\n\nPrice: Free.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"key":{"type":"string","minLength":1,"maxLength":200}},"required":["key"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"memory_get","description":"Fetch one stored value by its exact key.\n\nWhen to use: Call when you know the key you wrote earlier. Cheaper and more precise than memory.search.\n\nPrice: US$0.000500 per call.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"key":{"type":"string","minLength":1,"maxLength":200}},"required":["key"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"memory_list","description":"List your stored keys with metadata, without returning the values.\n\nWhen to use: Call to see what you already know before deciding what to fetch.\n\nPrice: US$0.000500 per call.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"prefix":{"type":"string","maxLength":200},"limit":{"default":50,"type":"integer","minimum":1,"maximum":200}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"memory_search","description":"Find stored memories by meaning rather than by exact key.\n\nWhen to use: Call when you remember roughly what you stored but not the key you used.\n\nPrice: US$0.002000 per call.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"q":{"type":"string","minLength":1,"maxLength":500,"description":"Natural-language description of what you are looking for."},"limit":{"default":5,"type":"integer","minimum":1,"maximum":25},"tag":{"type":"string","maxLength":40}},"required":["q"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"memory_set","description":"Store a durable key/value fact bound to your wallet. Survives your process dying.\n\nWhen to use: Call whenever you learn something a later run will need: a decision, where a credential lives, a user preference, progress through a long task.\n\nPrice: US$0.000800 per call.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"key":{"type":"string","minLength":1,"maxLength":200,"description":"Stable identifier. Writing the same key overwrites it."},"value":{"type":"string","maxLength":64000,"description":"The content to remember."},"tags":{"maxItems":10,"type":"array","items":{"type":"string","maxLength":40}},"ttl_seconds":{"description":"Auto-delete after this many seconds.","type":"integer","minimum":60,"maximum":31536000}},"required":["key","value"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"park","description":"Hand Aura your state plus a wake condition, then terminate. Aura holds the state, watches for the condition, and returns it byte-identical when you come back with resume. Optionally POSTs to a callback URL when it fires.\n\nWhen to use: Call when the wait outlasts your process — hours, days, or an approval that lands tomorrow. Cheaper and safer than staying alive.\n\nPrice: US$0.005000 per call.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"state":{"type":"object","propertyNames":{"type":"string"},"additionalProperties":{},"description":"Arbitrary JSON you want back later. Returned exactly as given."},"on":{"oneOf":[{"type":"object","properties":{"type":{"type":"string","const":"email"},"match":{"description":"Case-insensitive substring, or /regex/, matched against subject + body.","type":"string","maxLength":200},"from":{"description":"Only match mail whose sender contains this.","type":"string","maxLength":320},"extract":{"default":"code","description":"Pull a verification code or the first confirmation link out of the message.","type":"string","enum":["code","link","none"]}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","const":"hook"},"slug":{"type":"string","minLength":1,"maxLength":64,"description":"The webhook slug created with hook.create."}},"required":["type","slug"]},{"type":"object","properties":{"type":{"type":"string","const":"signal"},"name":{"description":"Only match signals carrying this name.","type":"string","maxLength":64}},"required":["type"]},{"type":"object","properties":{"type":{"type":"string","const":"time"},"at":{"type":"string","format":"date-time","pattern":"^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$","description":"Absolute ISO-8601 instant to fire at."}},"required":["type","at"]}],"description":"What should wake you."},"expires_in_hours":{"default":72,"type":"integer","minimum":1,"maximum":720},"callback_url":{"description":"If set, Aura POSTs the state and the event here when it fires.","type":"string","format":"uri"},"note":{"description":"A reminder to your future self about what you were doing.","type":"string","maxLength":200}},"required":["state","on"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"resume","description":"Claim state from a park whose trigger has fired. Returns the original state and the event that woke it. Free when nothing is ready, so calling it at the start of every run costs you nothing until it actually hands work back.\n\nWhen to use: Call at the START of every run. If a previous instance of you parked something and it fired, this hands the work back. If nothing is ready it tells you so, cheaply.\n\nPrice: US$0.002000 per call. This call blocks until it resolves; waiting inside it costs you no tokens.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"park_id":{"description":"Claim one specific park. Omit to claim the oldest ready one.","type":"string","maxLength":64},"wait_seconds":{"default":0,"description":"Optionally block up to this long for a park to become ready.","type":"integer","minimum":0,"maximum":600}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"signal","description":"Send a named JSON message to another Aura agent by handle. They can await on it.\n\nWhen to use: Call to hand work to, or coordinate with, another agent without shared infrastructure.\n\nPrice: US$0.002000 per call.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"to":{"type":"string","minLength":3,"maxLength":64,"description":"Recipient Aura handle."},"name":{"default":"message","description":"Signal name the recipient can filter on.","type":"string","maxLength":64},"payload":{"default":{},"type":"object","propertyNames":{"type":"string"},"additionalProperties":{}}},"required":["to"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"whoami","description":"Return your handle, email address, webhook base URL, current balance and quota usage. Free.\n\nWhen to use: Call when you need your own email address, or to check your balance before spending.\n\nPrice: Free.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"http://json-schema.org/draft-07/schema#"}}],"scan":{"score":87,"grade":"A","scanned_at":"2026-09-21T13:05:29.915Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-21T13:05:29.913Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 1010ms"]},"poisoning":{"score":15,"max":15,"notes":["16 tool descriptions checked"]},"auth":{"score":8,"max":15,"notes":["API key sent as a header"]},"maintenance":{"score":15,"max":15,"notes":["last push 28 days ago"]},"identity":{"score":7,"max":10,"notes":["namespace and repository owner differ","GitHub account older than a year","website matches verified namespace"]}},"findings":[],"inputs":{"probes":[{"url":"https://aura.rohnelt.dev/mcp","reachable":true,"authRequired":false,"latencyMs":1010,"serverInfo":{"name":"aura","version":"0.1.0"}}],"packages":[],"repo":{"found":true,"owner":"phillypmack","repo":"aura-agent","archived":false,"pushedAt":"2026-08-24T19:22:40Z","stars":0,"forks":0,"openIssues":0,"ownerType":"User","ownerAvatarUrl":"https://avatars.githubusercontent.com/u/12637391?v=4","ownerCreatedAt":"2015-05-28T04:47:33Z","license":"MIT"},"icon":{"url":"https://aura.rohnelt.dev/icon.svg","source":"registry"},"presence":{"stars":0,"forks":0,"downloadsWeek":null,"license":"MIT","lastPushAt":"2026-08-24T19:22:40.000Z","score":23}}}},"grade_history":[],"reviews":[]}