by zhuyansen
Discover, evaluate, and compare over 6,000 open-source agent skills, MCP servers, and AI tools with quality scoring, trending analysis, and automated GitHub synchronization.
Agent Skills Hub aggregates, cleans, scores, and presents open‑source repositories that implement agent skills, MCP servers, and related AI tools. It provides a searchable web UI and a REST API so developers can quickly find high‑quality, up‑to‑date components.
/api/skills, /api/trending, /api/top-rated to retrieve paginated lists, rankings, and statistics in JSON./api/submit-skill with a GitHub repo URL to propose new entries.tsvector with GIN indexing.Q: How often is the data refreshed? A: An automated GitHub Actions workflow runs every 8 hours; full syncs happen on Sundays, incremental updates on weekdays.
Q: Can I host the platform myself? A: Yes. Clone the repo, set up the FastAPI backend (Python 3.12) and the React frontend, configure a Supabase PostgreSQL instance or use the provided SQLite for local testing, and run the GitHub sync workflow.
Q: What criteria affect the quality score? A: The score combines six quality dimensions (README completeness, clarity, specificity, examples, structure, and agent readiness) and nine weighted signals such as stars, recency, forks, commit activity, issue resolution rate, momentum, author followers, and repository size.
Discover, evaluate, and compare 6,000+ open-source Agent Skills, MCP servers, and AI tools.
🌐 Live: agentskillshub.top · 📰 Newsletter · 𝕏 Follow
GitHub API ──▸ Collection ──▸ Cleaning ──▸ Evaluation ──▸ Scoring ──▸ Presentation
(6 phases) (classify) (6 dimensions) (0-100) (Web + API)
| Layer | Stack |
|---|---|
| Backend | Python 3.12 · FastAPI · SQLAlchemy · httpx |
| Frontend | React 18 · TypeScript · Vite · TailwindCSS v4 |
| Database | Supabase (PostgreSQL) / SQLite (local) |
| Deploy | GitHub Pages + GitHub Actions (every 8h) |
| Resend API · Supabase pg_net |
scheduler/jobs.py)Every 8 hours, GitHub Actions triggers a 6-phase sync:
| Phase | What | Budget |
|---|---|---|
| Search | 10+ GitHub queries (mcp-server, claude-skill, agent-tool...) | ~30 |
| Masters | Fetch repos from verified skill creators | ~18 |
| Extra | Community-submitted + curated repos | ~14 |
| Enrich | Owner profiles (followers) | ≤500 |
| README | Full README content (≤50KB each) | ≤300 |
| Upsert | Clean → score → save | 0 |
services/data_cleaner.py)repo_full_namemcp-server · claude-skill · codex-skill · agent-tool · ai-skill · llm-plugin · youmind-pluginQuality Analysis — 6 dimensions (services/quality_analyzer.py):
| Dimension | Weight | Key Signals |
|---|---|---|
| Completeness | 15% | README size, license, description, stars |
| Clarity | 15% | Description quality, topics, naming |
| Specificity | 15% | Language, topic count, category, size |
| Examples | 12% | Code examples, commits, contributors |
| README Structure | 23% | Sections, code blocks, badges, TOC |
| Agent Readiness | 20% | API docs, config, install, MCP compliance |
Composite Score — 9 weighted signals (services/scorer.py):
| Signal | Weight | Method |
|---|---|---|
| Quality | 20% | 6-dimension aggregate |
| Stars | 18% | log₁₊ₓ normalization |
| Recency | 11% | Exponential decay e⁻⁰·⁰¹ᵈ |
| Forks | 10% | log₁₊ₓ |
| Commits | 10% | log₁₊ₓ |
| Issue Resolution | 10% | resolved / total |
| Momentum | 8% | Z-score star growth |
| Author Followers | 8% | log₁₊ₓ |
| Size Bonus | 5% | Smaller = higher |
Also: Platform Inference (17 platforms), Token Estimation, Composability (TF-IDF + 8-signal skill pairing).
Dual-mode API client: Production uses Supabase PostgREST + RPCs directly; dev uses FastAPI backend.
Key optimizations:
get_landing_data() RPC replaces 7+ API callsv_trending, v_top_rated, v_rising, etc.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
cd frontend
npm install
npm run dev
| Method | Path | Description |
|---|---|---|
| GET | /api/skills |
Paginated list (search, filter, sort) |
| GET | /api/skills/{id} |
Skill detail + compatible skills |
| GET | /api/trending |
Star velocity leaders (7 days) |
| GET | /api/rising |
New this week |
| GET | /api/top-rated |
Highest scored |
| GET | /api/most-starred |
Community classics (6+ months) |
| GET | /api/masters |
Verified creators + org builders |
| GET | /api/landing |
Bundled homepage data |
| GET | /api/stats |
Summary statistics |
| GET | /api/feed.xml |
RSS 2.0 feed |
| GET | /api/sitemap.xml |
SEO sitemap (6,000+ URLs) |
| POST | /api/submit-skill |
Submit a GitHub repo |
| POST | /api/subscribe |
Newsletter signup |
┌─────────── GitHub Actions ───────────┐
│ sync.yml (8h) · deploy.yml · newsletter.yml (Mon) │
└──────┬──────────────┬────────────────┬──┘
▼ ▼ ▼
Supabase GitHub Pages Resend API
(PostgreSQL) (React SPA) (Emails)
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
Please log in to share your review and rating for this MCP.
Explore related MCPs that share similar capabilities and solve comparable challenges
by modelcontextprotocol
A Model Context Protocol server for Git repository interaction and automation.
by zed-industries
A high‑performance, multiplayer code editor designed for speed and collaboration.
by modelcontextprotocol
Model Context Protocol Servers
by modelcontextprotocol
A Model Context Protocol server that provides time and timezone conversion capabilities.
by cline
An autonomous coding assistant that can create and edit files, execute terminal commands, and interact with a browser directly from your IDE, operating step‑by‑step with explicit user permission.
by upstash
Provides up-to-date, version‑specific library documentation and code examples directly inside LLM prompts, eliminating outdated information and hallucinated APIs.
by daytonaio
Provides a secure, elastic infrastructure that creates isolated sandboxes for running AI‑generated code with sub‑90 ms startup, unlimited persistence, and OCI/Docker compatibility.
by continuedev
Enables faster shipping of code by integrating continuous AI agents across IDEs, terminals, and CI pipelines, offering chat, edit, autocomplete, and customizable agent workflows.
by github
Connects AI tools directly to GitHub, enabling natural‑language interactions for repository browsing, issue and pull‑request management, CI/CD monitoring, code‑security analysis, and team collaboration.