degenlegion-com/waxseal-sdk
๐ โ๏ธ ๐ - On-chain Ed25519 identity for AI agents โ verify seals by fingerprint, validate document signatures, and gate irreversible actions behind human-signed approval tokens. Hosted at api.waxseal.id/mcp; local install (npx @waxseal/mcp) for signing.
Quick Install
{
"mcpServers": {
"degenlegion-com-waxseal-sdk": {
"command": "npx",
"args": [
"-y",
"degenlegion-com-waxseal-sdk"
]
}
}
}Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.
Documentation Overview
WaxSeal SDK
Cryptographic identity for the open web and for AI agents.
One Ed25519 keypair. One 64-character fingerprint. Permanent on-chain record.
waxseal.id ยท Developer Docs ยท Get your seal
Packages
| Package | What it is | Install |
|---|---|---|
@waxseal/verify | Browser + Node SDK โ verify identities, validate signatures, embed badges, verify webhooks | npm install @waxseal/verify |
@waxseal/mcp | MCP server for Claude, Cursor, Windsurf, and VS Code โ verify identities, sign documents, gate AI actions with human approvals | npx @waxseal/mcp |
@waxseal/mcp โ for AI agents
Give Claude, Cursor, Windsurf, or VS Code Copilot a cryptographic identity layer in under two minutes.
{
"mcpServers": {
"waxseal": {
"command": "npx",
"args": ["-y", "@waxseal/mcp"],
"env": {
"WAXSEAL_PRIVATE_KEY_PEM": "-----BEGIN PRIVATE KEY-----\n<your key>\n-----END PRIVATE KEY-----"
}
}
}
}
No install needed. Use the hosted server in any HTTP-capable MCP client:
https://api.waxseal.id/mcp
What the 6 tools give your agent:
| Tool | What it does | Key needed? |
|---|---|---|
waxseal.info | Platform overview, tiers, and tool guide | No |
waxseal.identity.verify | Look up fingerprint โ name, chain, wallet, status | No |
waxseal.signature.verify | Confirm an Ed25519 signature against an on-chain key | No |
waxseal.approval.verify | Validate a human approval token before executing | No |
waxseal.document.sign | Sign any content with your WaxSeal private key | Yes |
waxseal.approval.create | Create a signed, time-limited approval token | Yes |
Verify-only tools work with zero configuration. Signing tools require WAXSEAL_PRIVATE_KEY_PEM.
โ Full MCP docs ยท Smithery listing ยท npm
@waxseal/verify โ for apps and backends {#waxsealverify}
npm install @waxseal/verify
Works in React, Vue, Node.js, n8n, serverless functions, and any runtime with fetch.
Two modes, one fingerprint
Mode 1 ยท Badge Verification
"Does this WaxSeal exist and is it real?"
Confirm a seal is on-chain. No user interaction required โ the fingerprint alone is enough.
Use cases
- โฆ Verified author badge on blog posts and articles
- โฆ Contributor identity on GitHub-style tools
- โฆ Publisher verification on CMS platforms
- โฆ Prove you created something before AI did
import { verifySeal } from "@waxseal/verify";
const seal = await verifySeal({ fingerprint: "a1b2c3d4..." });
if (seal.valid && seal.onChain) {
console.log(seal.displayName, "ยท", seal.chain);
// "Ada Lovelace ยท base"
}
Mode 2 ยท Login & Action Approval
"Did this person sign this, right now?"
A signed challenge proves the key holder is present โ replaces passwords, OTP, and email loops entirely.
Use cases
- โฆ Passwordless sign-in โ no email, no OTP, no credentials to breach
- โฆ Approve a document or high-value transaction
- โฆ Gate a comment, post, or vote behind verified identity
- โฆ Issue an API key only to verified seal holders
- โฆ Automate identity checks in n8n / Make.com / Zapier
const seal = await verifySeal({
fingerprint: "a1b2c3d4...",
message: "I approve this transfer.",
signature: "base64url...",
});
if (seal.valid && seal.onChain && seal.signatureValid) {
// Cryptographic proof โ no password, no session token
}
React Badge
import { WaxSealBadge } from "@waxseal/verify/badge";
<WaxSealBadge fingerprint="a1b2c3d4..." />
Or build your own:
import { useEffect, useState } from "react";
import { verifySeal, type VerifyResult } from "@waxseal/verify";
export function SealBadge({ fingerprint }: { fingerprint: string }) {
const [seal, setSeal] = useState<VerifyResult | null>(null);
useEffect(() => {
let active = true;
verifySeal({ fingerprint }).then((r) => active && setSeal(r));
return () => { active = false; };
}, [fingerprint]);
if (!seal?.valid || !seal.onChain) return null;
return (
<a href={`https://waxseal.id/seal/${seal.fingerprint}`} target="_blank" rel="noopener noreferrer">
โฆ {seal.displayName ?? seal.fingerprint.slice(0, 8)}
</a>
);
}
HTML Embed (no build step)
<script src="https://waxseal.id/embed.js"></script>
<span data-wax-seal="YOUR_64_CHAR_FINGERPRINT"></span>
Email โ script tags are blocked by mail clients. Use a plain link instead:
<a href="https://waxseal.id/seal/YOUR_FINGERPRINT">Verify my Wax Seal</a>
Webhook Verification
import { verifyWebhookSignature, isWaxSealWebhookEvent } from "@waxseal/verify/webhooks";
app.post("/webhook/waxseal", express.raw({ type: "*/*" }), (req, res) => {
const valid = verifyWebhookSignature({
body: req.body,
signature: String(req.headers["x-waxseal-signature"]),
secret: process.env.WAXSEAL_WEBHOOK_SECRET,
});
if (!valid) return res.status(401).send("Invalid signature");
const event = JSON.parse(req.body.toString());
if (isWaxSealWebhookEvent(event, "seal.minted")) {
console.log("New seal:", event.data.fingerprint, "on", event.data.chain);
}
res.sendStatus(200);
});
Webhook events
| Event | When it fires |
|---|---|
seal.verified | A seal was verified via the API |
seal.minted | A new seal NFT was minted on-chain |
seal.updated | Seal name, avatar, or metadata changed |
seal.subscription.started | A seal holder started a paid subscription |
seal.subscription.ended | A subscription expired or was cancelled |
challenge.approved | A login challenge was verified โ user authenticated |
REST API โ no SDK, no key required
POST https://api.waxseal.id/v1/verify
Content-Type: application/json
{
"fingerprint": "<64-char hex>",
"message": "...",
"signature": "..."
}
{
"valid": true,
"onChain": true,
"chain": "base",
"displayName": "Ada Lovelace",
"walletAddress": "0xโฆ",
"signatureValid": true,
"verifiedAt": "2026-01-01T00:00:00Z"
}
Works with everything
| Stack | How |
|---|---|
| React / Vue / Svelte | npm install @waxseal/verify |
| Node.js / Express | Same package + webhook helper |
| n8n | HTTP Request node โ REST API, or npm package in Code node |
| Make.com | HTTP module โ REST API |
| Zapier | Webhook by Zapier trigger |
| PHP / Python / Go | Plain HTTP POST to the REST API |
| Static HTML / CMS | Two-line embed.js snippet |
| Claude / Cursor / Windsurf / VS Code | @waxseal/mcp |
VerifyResult type
type VerifyResult = {
valid: boolean;
fingerprint: string;
onChain: boolean;
chain?: "ethereum" | "base" | "bnb";
walletAddress?: string;
displayName?: string;
publicKeyConfirmed?: boolean;
signatureValid?: boolean;
verifiedAt?: string;
error?: string;
};
MIT ยฉ Wax Seal