Lyra Registry
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Lyra Registrysearch for top DeFi MCP tools on BSC"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
š Lyra Registry
The NPM for Crypto AI Tools - Central registry for the Lyra ecosystem
Lyra Registry is a standalone API service that catalogs, scores, and serves metadata for all tools in the Lyra ecosystem. It enables discovery, evaluation, and integration of 800+ crypto & DeFi MCP tools.
Between builds I am working on cleaning up the main Lyra repo with over 800+ blockchain and cryptocurrency tools. I hope to release it soon.
⨠Features
š Trust Scoring - Every tool is scored using the SperaxOS algorithm
š Search & Filter - Full-text search with category, chain, and protocol filters
š Trending - Track tool popularity and usage
š MCP Integration - Auto-seed from running Lyra MCP servers
š Deploy Anywhere - Deploy to any Node host in minutes
The public demo deployment is offline while hosting is being migrated. Run it locally with the Quick Start below, or read the source at github.com/nirholas/lyra-registry.
Related MCP server: Agent Index MCP Server
šļø Tech Stack
Framework: Next.js 14 (App Router)
Database: PostgreSQL (Neon/Supabase)
ORM: Drizzle
Language: TypeScript
Validation: Zod
š Quick Start
1. Clone and Install
git clone https://github.com/nirholas/lyra-registry.git
cd lyra-registry
npm install2. Set Up Database
Create a PostgreSQL database on Neon or Supabase (free tier works).
cp .env.example .env
# Edit .env with your DATABASE_URL3. Run Migrations
npm run db:push4. Seed Database
If you have a running Lyra MCP server:
LYRA_MCP_URL=http://localhost:3001/mcp npm run db:seedOr seed with sample data:
npm run db:seed5. Start Development Server
npm run devVisit http://localhost:3000 to see the landing page.
š” API Reference
Tools
Method | Endpoint | Description |
GET |
| List all tools with pagination |
POST |
| Register a new tool |
GET |
| Get tool by ID |
PATCH |
| Update a tool |
DELETE |
| Delete a tool |
Search & Discovery
Method | Endpoint | Description |
GET |
| Full-text search |
GET |
| Get trending tools |
GET |
| List all categories |
POST |
| Submit tool for review |
GET |
| Health check & stats |
Query Parameters
/api/tools and /api/search
Param | Type | Description |
| string | Search query |
| string | Filter by category slug |
| string | Filter by blockchain (bsc, ethereum, etc.) |
| string | Filter by protocol (pancakeswap, aave, etc.) |
| a|b|f | Filter by trust grade |
| true|false | Filter by API key requirement |
| string | Comma-separated tags |
| number | Page number (default: 1) |
| number | Items per page (default: 20, max: 100) |
| string | Sort field: name, createdAt, totalScore, downloadCount |
| asc|desc | Sort direction (default: desc) |
/api/trending
Param | Type | Description |
| day|week|month | Time period (default: week) |
| number | Number of results (default: 10, max: 50) |
| string | Filter by category |
Example Requests
# Search for DeFi tools
curl "http://localhost:3000/api/search?q=defi&category=defi"
# Get top 10 trending tools this week
curl "http://localhost:3000/api/trending?period=week&limit=10"
# Get all security tools
curl "http://localhost:3000/api/tools?category=security&sortBy=totalScore"
# Register a new tool
curl -X POST "http://localhost:3000/api/tools" \
-H "Content-Type: application/json" \
-d '{
"name": "my_custom_tool",
"description": "A custom DeFi tool",
"category": "defi",
"inputSchema": {
"type": "object",
"properties": {
"address": { "type": "string" }
},
"required": ["address"]
},
"chains": ["ethereum", "bsc"],
"tags": ["defi", "portfolio"]
}'ā Trust Score Algorithm
Every tool is scored using the SperaxOS trust algorithm. The score determines the tool's grade:
Criteria | Weight | Required |
Validated | 20 | ā |
Has Tools | 15 | ā |
Deployment | 15 | ā |
Documentation | 10 | ā |
Auto Deploy | 12 | |
License | 8 | |
Prompts | 8 | |
Resources | 8 | |
Claimed | 4 |
Grades
Grade | Score | Description |
A | 80%+ | All required items met, excellent tool |
B | 60-79% | All required items met, good tool |
F | <60% | Missing required items or low score |
š Project Structure
lyra-registry/
āāā src/
ā āāā app/
ā ā āāā api/
ā ā ā āāā tools/
ā ā ā ā āāā route.ts # GET/POST /api/tools
ā ā ā ā āāā [id]/
ā ā ā ā āāā route.ts # GET/PATCH/DELETE /api/tools/:id
ā ā ā āāā search/
ā ā ā ā āāā route.ts # GET /api/search
ā ā ā āāā trending/
ā ā ā ā āāā route.ts # GET /api/trending
ā ā ā āāā categories/
ā ā ā ā āāā route.ts # GET/POST /api/categories
ā ā ā āāā discovery/
ā ā ā ā āāā route.ts # GET/POST /api/discovery
ā ā ā āāā health/
ā ā ā āāā route.ts # GET /api/health
ā ā āāā globals.css
ā ā āāā layout.tsx
ā ā āāā page.tsx # Landing page
ā āāā db/
ā ā āāā index.ts # Database connection
ā ā āāā schema.ts # Drizzle schema
ā ā āāā seed.ts # Seed script
ā āāā lib/
ā ā āāā calculateScore.ts # Trust score algorithm (from SperaxOS)
ā ā āāā validation.ts # Zod schemas
ā āāā types/
ā āāā index.ts # TypeScript types
āāā drizzle.config.ts
āāā next.config.ts
āāā package.json
āāā tsconfig.json
āāā README.mdš¢ Deployment
Vercel
Push to GitHub
Import to Vercel
Add
DATABASE_URLenvironment variableDeploy
Railway
railway init
railway add
railway variables set DATABASE_URL=...
railway upš¤ Integration with Lyra Ecosystem
Auto-Seeding from Lyra MCP Server
The registry can automatically import tools from a running Lyra MCP server:
# Start Lyra server
cd ../Lyra && bun run build && bun dist/cli.mjs --transport=http --port=3001
# Seed registry
cd ../lyra-registry
LYRA_MCP_URL=http://localhost:3001/mcp npm run db:seedDiscovery Pipeline (via Lyra-Intel)
The lyra-intel project can automatically discover and submit new tools:
# In lyra-intel
from lyra_intel.discovery import RegistrySubmitter
submitter = RegistrySubmitter("http://localhost:3000/api/discovery")
await submitter.submit_tool(tool, security_result)š License
All rights reserved. See LICENSE.
š Links
Lyra MCP Server - The main MCP server with 280+ tools
Lyra Intel - Auto-discovery and security scanning
SperaxOS - The scoring algorithm source
Sperax - Sperax ecosystem
š Live HTTP Deployment
Lyra Registry is deployed and accessible over HTTP via MCP Streamable HTTP transport ā no local installation required.
Endpoint:
https://modelcontextprotocol.name/mcp/lyra-registryConnect from any MCP Client
Add to your MCP client configuration (Claude Desktop, Cursor, SperaxOS, etc.):
{
"mcpServers": {
"lyra-registry": {
"type": "http",
"url": "https://modelcontextprotocol.name/mcp/lyra-registry"
}
}
}Available Tools (3)
Tool | Description |
| Search MCP ecosystem |
| Popular MCP servers |
| All Sperax MCP servers |
Example Requests
Search MCP ecosystem:
curl -X POST https://modelcontextprotocol.name/mcp/lyra-registry \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_mcp_ecosystem","arguments":{"query":"crypto defi"}}}'Popular MCP servers:
curl -X POST https://modelcontextprotocol.name/mcp/lyra-registry \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_popular_mcp_servers","arguments":{"category":"crypto"}}}'All Sperax MCP servers:
curl -X POST https://modelcontextprotocol.name/mcp/lyra-registry \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_sperax_mcp_servers","arguments":{}}}'List All Tools
curl -X POST https://modelcontextprotocol.name/mcp/lyra-registry \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Also Available On
SperaxOS - source for the MCP marketplace. The hosted marketplace is offline while hosting is being migrated.
All 27 MCP servers ā See the full catalog at modelcontextprotocol.name
Powered by modelcontextprotocol.name ā the open MCP HTTP gateway
Documentation
Full documentation site: https://nirholas.github.io/lyra-registry/
Getting started covers install and first run.
Examples has copy-paste snippets.
This server cannot be deployed
Maintenance
Related MCP Connectors
Search, vet & assemble MCP servers from your agent: verified tools, risk labels, and trust scores.
Search a nightly-refreshed directory of MCP servers by keyword, category or topic.
Capability registry for the agentic economy. Semantic search over verified MCP server listings.
Hosted MCP gateway for Web3 infra discovery across 20+ networks via one endpoint.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables discovery and querying of available MCP servers from the official repository. Supports searching by name, description, features, categories, and provides random server suggestions for exploration.15 npm3MIT
- FlicenseNot gradedqualityNot gradedmaintenanceEnables users to search and discover over 500 AI agent endpoints and x402 APIs directly from MCP-compatible clients like Claude and Cursor. It provides tools to query endpoints by keyword, category, or capability while offering access to detailed provider statistics.-
- AlicenseAqualityBmaintenanceMCP server with 43 tools for blockchain data ā token lookups, wallet balances, live chain queries across 10+ networks, and full API documentation search.27889 npmApache 2.0
- AlicenseAqualityDmaintenanceEnables searching and retrieving details of 9,000+ MCP servers from the Agent Almanac catalog, allowing agents to discover, inspect, and install tools directly.347 npmMIT