GitHub Trending MCP
Provides tools to search GitHub for trending repositories by topic and time range, summarize repository READMEs, and compare multiple repositories using the GitHub Search API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@GitHub Trending MCPFind trending AI agent repos from last 2 weeks"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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"
Related MCP server: GitHub Enterprise MCP Server
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: 14summarize_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.mdGetting Started
1. Clone the repo
git clone https://github.com/your-username/github-trending-MCP.git
cd github-trending-MCP2. Create a virtual environment and install dependencies
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt3. 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 .envGITHUB_TOKEN=your_token_here4. 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
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/curlygirltech/github-trending-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server