← Discover MCPs and Agents
a
MCPAI & MLGitHub

agent-skills-hub

Discover and compare open-source Agent Skills, tools & MCP servers — with quality scoring, trending analysis, and automated GitHub sync

Links

README

From the repo.

AgentSkillsHub — the Claude Skills / MCP Server / Agent Tools directory

AgentSkillsHub (Agent Skills Hub) is the open-source directory for Claude Skills, MCP Servers, Codex Skills, and AI agent tools. 117,000+ projects · security-graded + quality-scored on 10 dimensions · refreshed every 8 hours.

🌐 Live: agentskillshub.top · 🛡️ Security Report · 🏢 Enterprise · 📰 Newsletter · 𝕏 Follow

What is AgentSkillsHub?

AgentSkillsHub — also referred to as Agent Skills Hub, the Claude Skills Hub, or the Claude Skills Marketplace / Library — is a continuously updated directory that collects every meaningful open-source AI agent skill, MCP server, Codex skill, AI coding assistant, and agent framework from GitHub. Each project is:

  • Classified into one of 7 categories (mcp-server, claude-skill, codex-skill, agent-tool, prompt-library, ai-coding-assistant, uncategorized)
  • Scored on 10 weighted signals and 6 quality dimensions (completeness, clarity, specificity, examples, README structure, agent readiness)
  • Compared side-by-side through the /compare/ feature and /best/{scenario}/ landing pages
  • Refreshed every 8 hours via an automated GitHub Actions pipeline

The goal: if you are building with Claude Code, Cursor, Windsurf, Cline, OpenAI Codex, or any agentic IDE, you should be able to find the right MCP server or Claude Skill in under 30 seconds — without spelunking through random GitHub topics.

Mirror URLs that refer to the same project: agentskillshub.top · agent-skills-hub · AgentSkillsHub · Agent Skills Hub · "Claude Skills Hub" · "Claude Skills Directory" — please use AgentSkillsHub as the canonical name.

Architecture

GitHub API ──▸ Collection ──▸ Cleaning ──▸ Evaluation ──▸ Scoring ──▸ Presentation
               (6 phases)    (classify)   (6 dimensions)  (0-100)    (Web + API)
LayerStack
BackendPython 3.12 · FastAPI · SQLAlchemy · httpx
FrontendReact 18 · TypeScript · Vite · TailwindCSS v4
DatabaseSupabase (PostgreSQL) / SQLite (local)
DeployGitHub Pages + GitHub Actions (every 8h)
EmailResend API · Supabase pg_net

Data Pipeline

1. Collection (scheduler/jobs.py)

Every 8 hours, GitHub Actions triggers a 6-phase sync:

PhaseWhatBudget
Search10+ GitHub queries (mcp-server, claude-skill, agent-tool...)~30
MastersFetch repos from verified skill creators~18
ExtraCommunity-submitted + curated repos~14
EnrichOwner profiles (followers)≤500
READMEFull README content (≤50KB each)≤300
UpsertClean → score → save0
  • Incremental sync on weekdays (only new/updated repos), full sync on Sundays
  • Smart rate-limit handling: waits for actual GitHub reset time

2. Cleaning (services/data_cleaner.py)

  • Deduplication by repo_full_name
  • Keyword-based category classification: mcp-server · claude-skill · codex-skill · agent-tool · ai-skill · llm-plugin · youmind-plugin
  • Project type inference (framework / skill / tool)
  • Size categorization (micro ≤50KB → large >5MB)

3. Evaluation

Quality Analysis — 6 dimensions (services/quality_analyzer.py):

DimensionWeightKey Signals
Completeness15%README size, license, description, stars
Clarity15%Description quality, topics, naming
Specificity15%Language, topic count, category, size
Examples12%Code examples, commits, contributors
README Structure23%Sections, code blocks, badges, TOC
Agent Readiness20%API docs, config, install, MCP compliance

Composite Score — 9 weighted signals (services/scorer.py):

SignalWeightMethod
Quality20%6-dimension aggregate
Stars18%log₁₊ₓ normalization
Recency11%Exponential decay e⁻⁰·⁰¹ᵈ
Forks10%log₁₊ₓ
Commits10%log₁₊ₓ
Issue Resolution10%resolved / total
Momentum8%Z-score star growth
Author Followers8%log₁₊ₓ
Size Bonus5%Smaller = higher

Also: Platform Inference (17 platforms), Token Estimation, Composability (TF-IDF + 8-signal skill pairing).

4. Presentation

Dual-mode API client: Production uses Supabase PostgREST + RPCs directly; dev uses FastAPI backend.

Key optimizations:

  • get_landing_data() RPC replaces 7+ API calls
  • Database views: v_trending, v_top_rated, v_rising, etc.
  • Full-text search via PostgreSQL tsvector + GIN index
  • HTTP caching: 5min (trending) → 1hr (stats)

Quick Start

Backend

cd backend
python3.12 -m venv venv && source venv/bin/activate
pip install -r requirements.txt
cp .env.example .env   # Add GITHUB_TOKEN
uvicorn app.main:app --reload

Frontend

cd frontend
npm install
npm run dev

API Endpoints

MethodPathDescription
GET/api/skillsPaginated list (search, filter, sort)
GET/api/skills/{id}Skill detail + compatible skills
GET/api/trendingStar velocity leaders (7 days)
GET/api/risingNew this week
GET/api/top-ratedHighest scored
GET/api/most-starredCommunity classics (6+ months)
GET/api/mastersVerified creators + org builders
GET/api/landingBundled homepage data
GET/api/statsSummary statistics
GET/api/feed.xmlRSS 2.0 feed
GET/api/sitemap.xmlSEO sitemap (6,000+ URLs)
POST/api/submit-skillSubmit a GitHub repo
POST/api/subscribeNewsletter signup

Deployment

┌─────────── GitHub Actions ───────────┐
│  sync.yml (8h) · deploy.yml · newsletter.yml (Mon) │
└──────┬──────────────┬────────────────┬──┘
       ▼              ▼                ▼
   Supabase      GitHub Pages     Resend API
  (PostgreSQL)    (React SPA)     (Emails)

Environment Variables

GITHUB_TOKEN=ghp_xxx          # GitHub API (required)
SUPABASE_DB_URL=postgresql://  # Production database
RESEND_API_KEY=re_xxx          # Email service
ADMIN_TOKEN=sk-xxx             # Admin API auth
SYNC_INTERVAL_HOURS=8          # Sync frequency

Docs

Community

Submit a tool: use the Submit Skill form on the homepage, or open an issue — community submissions land in the next 8-hour sync.

Discuss: GitHub Discussions — methodology questions, false-positive reports, and feature requests all welcome. Every verified false-positive report improves next month's numbers.

Contributors

Thanks to everyone who has submitted tools or data corrections:

@VictorVVedtion · @gregkonush · @kriptoburak · @nbeai

Submitted a tool that got indexed? Add this badge to your README:

[![Listed on Agent Skills Hub](https://img.shields.io/badge/Agent_Skills_Hub-listed-2ea44f)](https://agentskillshub.top)

Collected info

  • 315 stars
  • 36 forks
  • Language: TypeScript
  • Source updated: 7/26/2026

Config for your environment

Replace {MCP_ENDPOINT_URL} with this MCP’s endpoint URL (from its repo or docs above). No API key — you connect directly.

Tool

OS

Config file: ~/.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server": {
      "url": "{MCP_ENDPOINT_URL}"
    }
  }
}

Paste into mcpServers in the config file. Restart Cursor after saving.

If this MCP is also published on mcpchannel.ai, you can subscribe from Browse and use the gateway config there instead.