🚀 Awesome MCP Registry

An Open, Structured, and Standard Registry for MCP Servers and Packages

6000+ MCP Servers
20+ Categories
Open Source
0 packages found

🔌 API Endpoints

Access the complete MCP registry data programmatically:

GET
/api/v1/packages
Get all MCP packages with full metadata
GET
/api/v1/packages/categories
Get all categories with package counts
GET
/api/v1/packages/detail
Get package details by name
GET
/api/v1/search
Search packages by name or description (enhanced with MeiliSearch)
GET
/api/v1/search/suggest
Get search suggestions/autocomplete
GET
/api/v1/search/facets
Get available filters for search

Quick Start

Fetch all MCP servers:

curl http://localhost:3003/api/v1/packages

Or use in JavaScript:

fetch('/api/v1/packages').then(r => r.json()).then(console.log)

📦 Static Files

Direct access to registry data files:

GET
/indexes/packages-list.json
Complete packages index (static file)
GET
/indexes/categories-list.json
Categories index (static file)
GET
/packages/:category/:package.json
Individual package configuration