Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables natural language queries to search GitHub for trending repositories by topic, summarize project READMEs, and compare multiple repos to uncover ecosystem patterns.

README.md

github-trending-MCP

A Model Context Protocol (MCP) server that gives Claude live visibility into what the open source community is actively building. Search GitHub for emerging repositories by topic, summarize project READMEs, and compare multiple repos to surface ecosystem patterns -- all through natural language.

---

Why This Exists

This MCP uses the GitHub Search API to build a more transparent and configurable version of "trending" -- recently created repositories ranked by star velocity within a topic area. The result is a research workflow where you can ask Claude questions like:

  • "What are the most-starred AI agent repos created in the last two weeks?"
  • "Summarize what this repo actually does"
  • "Compare these three projects and tell me what problems they're each trying to solve"

---

Tech Stack

  • Python -- core language
  • MCP Python SDK -- exposes tools to Claude via the Model Context Protocol
  • httpx -- HTTP client for GitHub API requests
  • GitHub Search API -- the data source (official, authenticated, reliable)
  • python-dotenv -- environment variable management for your GitHub token

---

Tools

get_trending_repos

Searches GitHub for recently created repositories in a given topic area, sorted by star count. Accepts a topic string and a time range in days so you can define what "trending" means for your use case.

topic: "ai-agents"
time_range: 14

summarize_repo

Fetches the raw README for any GitHub repository by URL. Claude reads and summarizes it directly -- no secondary model call needed.

repo_url: "https://github.com/owner/repo"

compare_repos

Accepts a list of repository URLs and returns structured metadata for each -- name, description, star count, language, and topics. Gives Claude what it needs to reason across multiple projects and surface common themes or differences.

repo_urls: ["https://github.com/owner/repo-a", "https://github.com/owner/repo-b"]

---

Project Structure

github-trending-MCP/
├── src/
│   ├── __init__.py
│   └── server.py          # MCP server and tool definitions
├── requirements.txt       # Dependencies
├── .env.example           # Environment variable template
└── README.md

---

Getting Started

1. Clone the repo ``bash git clone https://github.com/your-username/github-trending-MCP.git cd github-trending-MCP ``

2. Create a virtual environment and install dependencies ``bash python -m venv .venv source .venv/bin/activate pip install -r requirements.txt ``

3. Set up your GitHub token

Copy .env.example to .env and add your token. A free GitHub account gives you 5,000 API requests per hour -- more than enough.

cp .env.example .env
GITHUB_TOKEN=your_token_here

4. Connect to Claude

Add this server to your Claude Code MCP config. Replace the paths with the absolute path to your cloned repo:

{
  "mcpServers": {
    "github-trending": {
      "type": "stdio",
      "command": "/absolute/path/to/github-trending-MCP/.venv/bin/python",
      "args": ["/absolute/path/to/github-trending-MCP/src/server.py"]
    }
  }
}

In Claude Code, you can add this via the command palette with /mcp or by editing your project config directly.

---

Example Prompts

Once connected, try these in Claude:

  • "Find the most-starred repositories about multi-agent systems created in the last 30 days"
  • "Summarize the README for [repo URL] in plain English"
  • "Compare these three repos and tell me which problem each one is trying to solve"
  • "What languages are most common in trending AI tooling repos right now?"

---

A Note on "Trending"

GitHub's official trending page uses an undocumented algorithm. This MCP uses a transparent proxy: repositories created within your specified time window, ranked by total stars. This gives you a configurable, reproducible definition of trending that you can adjust based on your research needs.

---

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.