MCP Hub
Back to servers

mcpdir

The largest open-source directory for Model Context Protocol (MCP) servers, aggregating 8,000+ community-driven servers from multiple sources into a searchable, categorized index.

Stars
4
Updated
Jan 11, 2026

MCP Hub

The Largest Open MCP Server Directory

8,000+ community-driven MCP servers. Open-source, fully searchable, zero vendor lock-in.


🌐 Live Demo → mcpdir.dev


GitHub Stars License PRs Welcome Deploy


MCP Hub Preview

Explore Servers · Browse Categories · Submit Server


What is MCP Hub?

MCP Hub is the largest open-source directory of Model Context Protocol (MCP) servers — the open standard that enables AI assistants like Claude, GPT, and others to interact with external tools, databases, and services.

Unlike closed registries, MCP Hub aggregates servers from 5+ sources and makes them freely searchable. No walled gardens, no gatekeeping — just a community-driven index of every MCP server we can find.

8,000+ servers · 15+ categories · 5 data sources · 100% open-source


Features

Discovery & Search

  • Full-text search with PostgreSQL FTS + trigram matching
  • Category browsing (Databases, APIs, Dev Tools, AI/ML, etc.)
  • Filter by validation status and source
  • Sort by stars, updated, or relevance

Multi-Source Indexing

We aggregate MCP servers from multiple sources to provide the most comprehensive directory:

SourceDescriptionLink
MCP RegistryOfficial Model Context Protocol registryregistry.modelcontextprotocol.io
npmNode.js packages with mcp keywordnpmjs.com
GitHubRepositories with mcp-server topicgithub.com/topics/mcp-server
GlamaCurated MCP servers from Glama.aiglama.ai/mcp/servers
PulseMCPCommunity MCP server directorypulsemcp.com
PyPIPython packages (coming soon)

Server Validation

  • Docker-based validation for secure sandbox testing
  • MCP handshake verification with protocol compliance
  • Capability discovery — tools, resources, prompts
  • Community-assisted validation for servers requiring config

GitHub Integration

  • Real-time stars & forks tracking
  • Last commit timestamps
  • Direct links to source repositories
  • README rendering with syntax highlighting

Developer Experience

  • One-click install commands (npx, uvx)
  • Tools/Resources/Prompts documentation
  • Responsive glassmorphism UI
  • Command palette search (Cmd+K)

Tech Stack

CategoryTechnology
FrameworkNext.js 16 (App Router)
UIReact 19 + Tailwind CSS 4
ComponentsRadix UI + Lucide Icons
DatabasePostgreSQL via Neon (serverless)
ORMDrizzle ORM
AuthNextAuth.js v5 (GitHub OAuth)
AI ParsingAnthropic Claude
ValidationDocker containers (Node.js/Python)

Quick Start

Prerequisites

  • Node.js 20+
  • pnpm 9+
  • PostgreSQL database (or Neon account)
  • GitHub OAuth App (for authentication)

1. Clone & Install

git clone https://github.com/eL1fe/mcpdir.git
cd mcpdir
pnpm install

2. Environment Setup

cp .env.example .env.local

Configure your .env.local:

# Database (Neon recommended)
DATABASE_URL=postgresql://user:password@host/database?sslmode=require

# GitHub (for sync + OAuth)
GITHUB_TOKEN=ghp_xxxxxxxxxxxx
GITHUB_CLIENT_ID=your-oauth-app-client-id
GITHUB_CLIENT_SECRET=your-oauth-app-client-secret

# NextAuth
AUTH_SECRET=generate-with-openssl-rand-base64-32

# AI Parsing (optional - enhances metadata extraction)
ANTHROPIC_API_KEY=sk-ant-...
# or
OPENROUTER_API_KEY=sk-or-...

3. Database Setup

# Generate migrations
pnpm db:generate

# Apply migrations
pnpm db:push

# Seed categories
pnpm seed:categories

4. Sync Servers

# Sync from MCP Registry
pnpm sync

# Sync from all sources
pnpm sync:all

# With validation (requires Docker)
pnpm validate:popular

5. Run Development Server

pnpm dev

Open http://localhost:3000


Project Structure

mcpdir/
├── src/
│   ├── app/                    # Next.js App Router pages
│   │   ├── page.tsx            # Homepage
│   │   ├── servers/            # Server listing & detail pages
│   │   ├── categories/         # Category pages
│   │   ├── auth/               # Authentication pages
│   │   ├── og/                 # Dynamic OG image generation
│   │   └── api/                # API routes
│   ├── components/             # React components
│   │   ├── ui/                 # Shadcn/ui components
│   │   ├── server-card.tsx     # Server display card
│   │   ├── filter-bar.tsx      # Search filters
│   │   └── search-command.tsx  # Command palette
│   ├── lib/
│   │   ├── db/                 # Database schema & queries
│   │   ├── seo/                # SEO utilities
│   │   ├── auth/               # NextAuth configuration
│   │   └── validation/         # MCP validation logic
│   └── types/                  # TypeScript definitions
├── scripts/
│   ├── sync-servers.ts         # Multi-source sync orchestrator
│   ├── validate-servers.ts     # Batch validation runner
│   └── lib/
│       ├── sources/            # Source adapters (npm, GitHub, registry)
│       ├── ai-parser.ts        # AI-powered metadata extraction
│       └── docker-validator.ts # Sandboxed MCP validation
├── drizzle/                    # Database migrations
└── public/                     # Static assets

Scripts Reference

CommandDescription
pnpm devStart development server
pnpm buildBuild for production
pnpm syncSync servers from MCP Registry
pnpm sync:allSync from all sources
pnpm sync:forceForce refresh all servers
pnpm validateRun validation on pending servers
pnpm validate:popularValidate top servers by stars
pnpm db:studioOpen Drizzle Studio
pnpm db:pushPush schema changes

Contributing

We welcome contributions! Here's how to get started:

Ways to Contribute

  • Add MCP servers — Submit servers to the registry
  • Improve documentation — Fix typos, add examples
  • Report bugs — Open issues with reproduction steps
  • Feature requests — Suggest new functionality
  • Code contributions — Pick up open issues

Development Workflow

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/amazing-feature
  3. Make your changes
  4. Run linting: pnpm lint
  5. Commit with conventional commits: git commit -m "feat: add amazing feature"
  6. Push to your fork: git push origin feature/amazing-feature
  7. Open a Pull Request

Roadmap

Completed

  • Multi-source indexing (MCP Registry, npm, GitHub, Glama, PulseMCP)
  • Server submission form with validation
  • Admin dashboard with validation queue
  • Auto-revalidation on version updates
  • 8,000+ servers indexed

In Progress

  • PyPI source integration

Planned

  • Server comparison tool
  • Installation analytics
  • API access for programmatic queries
  • Server health monitoring
  • User collections/favorites

Future Ideas

  • VS Code extension
  • CLI tool for server discovery
  • Self-hosted registry support

Related Projects


License

This project is licensed under the MIT License — see the LICENSE file for details.


Reviews

No reviews yet

Sign in to write a review