npm warden402-mcpstdioupdated 17d ago
The pre-execution security & trust layer for agents transacting on Base.
warden402 mcp 能做什么?
Warden — warden402.xyz
The pre-execution security & trust layer for agents transacting on Base.
Give Warden a token, a pending transaction, or an address → get a single decision:
block · review · clear with reasons, a risk score, and a plain-language summary.
Warden uses the x402 Bazaar as its intelligence backend and builds judgment, a provable track record, and (next) a firewall on top.
Why
x402 infrastructure is ahead of demand; the missing layer is trust. The marketplace vertical is crowded (Coinbase Bazaar + dozens of clones), but pre-execution security is wide open. Warden owns that vertical.
What's in here
| Path | What |
|---|---|
web/ |
The website (warden402.xyz) — landing + live demo + track-record. Runs the guard in-process, so it deploys as a single Vercel project. |
src/ |
Standalone Hono Guard API (same logic) — for agents/SDK/MCP and a persistent-ledger host. |
sdk/ |
@warden402/sdk — client + enforce/assertSafe gate + LangChain tools. |
mcp/ |
warden402-mcp — stdio MCP server exposing guard_token / guard_tx / guard_address. |
scripts/ |
smoke.ts (offline decision tests), probe.ts (calibration), recheck.ts (outcome re-checker). |
The decision contract (immutable spine)
Every endpoint returns a Verdict (src/schema/verdict.ts). Principles:
- The LLM never touches the verdict.
decisionandriskScorecome from deterministic rules; the LLM only writessummary. Auditable. - Fails safe. If a Bazaar signal can't be fetched it becomes
unknown→degraded:true→ the verdict isreviewat worst, never a falseclear. - Every verdict is snapshotted (
verdictId+ signal evidence) → the track-record moat.
Decision rules
- Hard rule:
honeypotorsanctionsfail → block (regardless of score). - Weighted-average risk ≥ 70 → block; degraded → review.
- Any single
fail(e.g. liquidity collapse) floors the decision at review (can't be diluted by the average). 2+warns → review. Else clear.
Endpoints
| Endpoint | What it checks |
|---|---|
GET /guard/token?address= |
honeypot, taxes, liquidity, holder concentration, OFAC |
POST /guard/tx {from,to,calldata} |
decodes calldata (unlimited approve / setApprovalForAll), sanctions + contract risk on the counterparty |
GET /guard/address?address= |
sanctions, contract risk, age/activity |
GET /track-record |
public trust stats (decision mix, hit-rate, rugs caught/missed) |
(The website exposes the same via /api/guard.)
Run locally
# Single-project site (recommended) — runs guard in-process
cd web && npm install
cp .env.example .env.local # set BAZAAR_INTERNAL_SECRET
npm run dev # http://localhost:3000
# Or the standalone Hono API
npm install
cp .env.example .env # set BAZAAR_INTERNAL_SECRET
npm run smoke # offline decision tests
npm run dev # http://localhost:8787
Production topology
web/is the production API + site. Deployed as a single Vercel project (Root Directory =web). It runs the guard/firewall in-process, so the endpoints agents actually call (/api/guard,/api/firewall) are live here. Hot path is edge-friendly: KV store (nofs) + per-IP rate limiting. Persistence turns on whenKV_REST_API_URL/KV_REST_API_TOKENare set.src/(Hono API) is an optional Node host — for teams that want a persistent-disk ledger or the x402 payment layer. Not required; not deployed by default. Thesrc/modules are the canonical logic; a drift-guard test (tests/drift.test.ts) proves the web copy stays identical.- Drift is impossible to ship silently:
npm testfails if the two diverge.
Deploy
See DEPLOY.md. TL;DR: new Vercel project, Root Directory = web,
set BAZAAR_INTERNAL_SECRET (+ optional KV_REST_API_URL/KV_REST_API_TOKEN for
persistent track-record), deploy. Done.
Bazaar internal-auth
Warden calls Bazaar without paying x402 (so our own products don't bill themselves) via
the X-Warden-Internal header. Bazaar must have a matching WARDEN_INTERNAL_SECRET. Until
set, all signals come back unknown and verdicts stay safely at review.
Roadmap
- ✅ Guard MVP (
/guard/token) + verdict contract - ✅
/guard/tx(pre-sign) +/guard/address+ track-record + re-checker - ✅ SDK / MCP / website
- ⏳ x402 payment layer (free tier → 402) + MCP Registry / Agentic.Market listing
- ⏳ Firewall / policy gateway — sits in front of an agent's x402 + onchain calls: spend caps, allow/deny by trust score, anomaly + injection-drain detection, audit log. B2B, Cloudflare Worker edge. The north star.
安装
把 warden402 mcp 添加到你的客户端。选择你正在使用的那个。
claude mcp add warden402-mcp -- npx -y warden402-mcpcodex mcp add warden402-mcp -- npx -y warden402-mcpamp mcp add warden402-mcp -- npx -y warden402-mcp{
"mcpServers": {
"warden402-mcp": {
"command": "npx",
"args": [
"-y",
"warden402-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"warden402-mcp": {
"command": "npx",
"args": [
"-y",
"warden402-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"warden402-mcp","command":"npx","args":["-y","warden402-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"warden402-mcp": {
"command": "npx",
"args": [
"-y",
"warden402-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"warden402-mcp": {
"command": "npx",
"args": [
"-y",
"warden402-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"warden402-mcp": {
"command": "npx",
"args": [
"-y",
"warden402-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"warden402-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"warden402-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"warden402-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"warden402-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y warden402-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
评分
39 / 100
不完整
- 文档25/25
- 维护19/25
- 可信度6/20
- 能力0/15
- 安装体验12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 9 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 0.1.0最新 | 2026年7月1日 |