X402 Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited X402 Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
An MCP (Model Context Protocol) server that exposes x402 DeFi data endpoints as tools for AI agents.
MCP is an open standard that lets AI applications (Claude, Cursor, OpenClaw, etc.) discover and use tools through a unified protocol. Think of it as a USB-C port for AI — any compliant client can plug into any compliant server.
This server wraps the x402 API (pay-per-call DeFi data) so that any MCP-compatible AI agent can:
| Tool | Description |
|---|---|
get_crypto_prices | Current prices, 24h changes, top movers |
analyze_whale_concentration | Token holder concentration & whale risk (param: token) |
compare_funding_rates | Perp funding rates across exchanges + arb opportunities |
list_available_endpoints | Discover all available x402 API endpoints |
localhost:4020 (or set X402_API_URL)cd x402-mcp-server
npm installAdd to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"x402-defi": {
"command": "node",
"args": ["/absolute/path/to/x402-mcp-server/src/index.js"],
"env": {
"X402_API_URL": "http://localhost:4020"
}
}
}
}Add to .cursor/mcp.json in your project (or global settings):
{
"mcpServers": {
"x402-defi": {
"command": "node",
"args": ["/absolute/path/to/x402-mcp-server/src/index.js"]
}
}
}openclaw mcp add x402-defi -- node /absolute/path/to/x402-mcp-server/src/index.js# Start the x402 API server first
cd ../x402-api-server && npm start &
# Test MCP server with the MCP inspector
npx @modelcontextprotocol/inspector node src/index.js
# Or pipe JSON-RPC manually:
echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0.0"}}}' | node src/index.jsAI Agent (Claude/Cursor/OpenClaw)
↕ MCP (stdio, JSON-RPC)
x402 MCP Server (this)
↕ HTTP
x402 API Server (localhost:4020)
↕ x402 protocol (HTTP 402 + USDC)
DeFi Data SourcesMIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.