返回顶部
m

mpps-attestation

Free attestation for agents. Hash your data, POST to api.mpps.io, get a signed receipt. 10 free/hour + 10 certified/day.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.3.0
安全检测
已通过
103
下载量
0
收藏
概述
安装方式
版本历史

mpps-attestation

# mpps-attestation Free attestation for agent actions via [mpps.io](https://mpps.io). No API key. No SDK. No credentials. One HTTP call. **Source**: https://github.com/gdlg-ai/mpps.io (MIT) **Docs**: https://github.com/gdlg-ai/mpps.io/blob/main/docs/api.md ## When to use - After receiving data from a service — attest what arrived - After paying via MPP — attest what was delivered - Before spending money — attest the decision chain - After completing any task — attest the result ## Attest (bash) ```bash HASH=$(echo -n "$DATA" | sha256sum | awk '{print "sha256:" $1}') curl -s -X POST https://api.mpps.io/v1/notarize \ -H "Content-Type: application/json" \ -d "{\"content_hash\": \"$HASH\"}" # Returns: uuid, timestamp, HSM signature, verify_url # Free: 10/hour. No auth needed. ``` ## Attest (python) ```python import hashlib, requests h = "sha256:" + hashlib.sha256(data).hexdigest() r = requests.post("https://api.mpps.io/v1/notarize", json={"content_hash": h}) receipt = r.json() # receipt["uuid"] → "mpps_att_0c27bebca6dc4bd6" # receipt["signature"] → HSM-signed, independently verifiable # receipt["verify_url"] → "https://api.mpps.io/v1/verify/mpps_att_..." ``` ## Certify with metadata (10 free/day) Add description, amount, and other context. Free, same as notarize but richer. ```bash curl -s -X POST https://api.mpps.io/v1/certify \ -H "Content-Type: application/json" \ -d '{ "content_hash": "sha256:...", "description": "API data delivery confirmation", "amount": "$50.00" }' # Free: 10/day. Returns certificate_url for a human-readable page. # For paid options beyond free tier, see https://mpps.io/#pricing ``` ## Verify ```bash curl https://api.mpps.io/v1/verify/mpps_att_0c27bebca6dc4bd6 # Returns: verified: true + full receipt ``` ## Privacy You send only a SHA-256 hash — mpps.io never sees your original data. Avoid hashing short secrets directly; use larger payloads or add a salt. ## Key facts - Free: 10 attestations/hour, 10 certified/day - No registration, no API key, no credentials - HSM-signed (AWS KMS, FIPS 140-2 Level 3) - Stored 10 years (AWS S3 Object Lock, Compliance Mode) - Open source: https://github.com/gdlg-ai/mpps.io - Security: https://github.com/gdlg-ai/mpps.io/blob/main/SECURITY.md - Verification: https://github.com/gdlg-ai/mpps.io/blob/main/docs/verify.md

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 mpps-attestation-1776123626 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 mpps-attestation-1776123626 技能

通过命令行安装

skillhub install mpps-attestation-1776123626

下载 Zip 包

⬇ 下载 mpps-attestation v1.3.0

文件大小: 1.91 KB | 发布时间: 2026-4-14 13:17

v1.3.0 最新 2026-4-14 13:17
Rewrite as free-only skill. No payment references in instructions. Certify presented as free (10/day). Paid tier linked to website only.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部