- Home
- MCP servers
- Lyra Registry
Lyra Registry
- typescript
13
GitHub Stars
typescript
Language
2 months ago
First Indexed
3 weeks ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Lyra Registry MCP Server provides a standalone MCP service that catalogs, scores, and serves metadata for Lyra ecosystem tools, enabling discovery, evaluation, and integration of 800+ crypto and DeFi MCP tools. It supports trust scoring, full-text search with filters, and auto-seeding from running Lyra MCP servers to keep tool data up to date, making it easier for you to discover and integrate trusted tools into your workflows.
How to use
You interact with the Lyra Registry MCP Server using an MCP client to discover, filter, and retrieve tool metadata, as well as submit tools for review. You can query the registry for tool listings, search for specific categories or chains, and fetch trending or category-specific results. You can also seed the registry from an active Lyra MCP server to import tools automatically.
How to install
Prerequisites: ensure you have Git installed and a Node.js environment available. You will also need access to a PostgreSQL database (local or hosted) for the registry data.
# 1. Clone the Lyra Registry repository
git clone https://github.com/nirholas/lyra-registry.git
cd lyra-registry
# 2. Install dependencies
pnpm install
- Set up the database configuration by copying the example environment file and editing it with your database URL.
cp .env.example .env
# Edit .env with your DATABASE_URL
- Run database migrations and push to the configured PostgreSQL database.
pnpm db:push
- Seed the registry data. If you have a Lyra MCP server running, seed using the MCP URL.
LYRA_MCP_URL=http://localhost:3001/mcp pnpm db:seed
Or seed with sample data
pnpm db:seed
6. Start the development server and view the landing page at the default host and port.
pnpm dev
## Additional notes
The Lyra Registry can auto-seed tools from a running Lyra MCP server, which helps you keep tool metadata synchronized with the source registry. You can also explore integration with Lyra Intel to enable discovery and submission workflows.
## Deployment & integration notes
For deployment, you can deploy to a hosting platform and provide a live DATABASE\_URL. The registry supports standard deployment processes and environmental configuration.
## Example usage patterns
- Discover tools by category, chain, or protocol and retrieve detailed tool metadata.
- Seed the registry from a local Lyra MCP server to populate initial data.