The NPM for Crypto AI Tools
Discover, evaluate, and integrate 280+ crypto & DeFi MCP tools
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/tools | List and filter all tools |
| POST | /api/tools | Register a new tool |
| GET | /api/tools/:id | Get tool details |
| GET | /api/search?q= | Search tools by name/description |
| GET | /api/trending | Get trending tools |
| GET | /api/categories | List all categories |
| GET | /api/health | Health check and stats |
| POST | /api/discovery | Submit tool for review |
Every tool is scored using the SperaxOS trust algorithm. The score is based on:
# Search for DeFi tools
curl "https://lyra-registry.vercel.app/api/search?q=defi&category=defi"
# Get trending tools this week
curl "https://lyra-registry.vercel.app/api/trending?period=week&limit=10"
# Get tool by ID
curl "https://lyra-registry.vercel.app/api/tools/[uuid]"
# Register a new tool
curl -X POST "https://lyra-registry.vercel.app/api/tools" \
-H "Content-Type: application/json" \
-d '{"name": "my-tool", "description": "...", "category": "defi", "inputSchema": {}}'