Repo Radar MCP
Enables AI agents to search, rank, compare, and analyze GitHub repositories using the GitHub API, including features like filtering by topic, language, stars, and retrieving README content.
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., "@Repo Radar MCPFind top Python repos about vector databases"
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.
Repo Radar MCP
Discover, rank and compare GitHub repositories from any MCP-compatible AI client.
Repo Radar MCP is a Python-based MCP server that connects AI agents to the GitHub API, allowing them to search, filter, rank and evaluate open-source repositories by topic, language, stars, license, activity and relevance.
It is designed for developers, builders and AI agents that need a structured way to research open-source projects.
Why Repo Radar MCP?
AI agents can write code, but they also need good technical context.
Repo Radar MCP gives your MCP-compatible client a simple set of tools to answer questions like:
What are the most popular Python repositories about RAG?
Which MCP servers are worth studying?
What GitHub projects are active, licensed and useful?
Which repository should I use as a reference for my next project?
How do several repositories compare by stars, forks, issues, license and recent activity?
Features
Search GitHub repositories by topic.
Filter by programming language.
Filter by minimum stars.
Rank repositories with a simple usefulness score.
Analyze a single repository.
Compare multiple repositories.
Fetch repository README content.
Return results as JSON or Markdown.
Uses your GitHub token safely from environment variables.
Works with MCP Inspector, Claude Desktop, Cursor and other MCP-compatible clients.
MCP Tools
Tool | Description |
| Search GitHub repositories by topic, language, stars and sorting mode. |
| Same as above, but returns a clean Markdown report. |
| Search repositories and add a practical repository score. |
| Search, rank and return repositories as Markdown. |
| Analyze one repository by |
| Analyze one repository and return a Markdown report. |
| Compare several repositories by |
| Compare several repositories and return a Markdown table. |
| Fetch the README of a repository. |
Installation
Clone the repository:
git clone https://github.com/javiermorron/repo-radar-mcp.git
cd repo-radar-mcpCreate and activate a virtual environment.
Windows PowerShell
python -m venv .venv
.\.venv\Scripts\activatemacOS / Linux
python -m venv .venv
source .venv/bin/activateInstall the project:
pip install -e .Copy the environment file:
cp .env.example .envOn Windows PowerShell:
copy .env.example .envEdit .env and add your GitHub token:
GITHUB_TOKEN=your_github_token_here
GITHUB_API_VERSION=2022-11-28
GITHUB_USER_AGENT=repo-radar-mcp/1.0.0Never commit your real .env file.
Run with MCP Inspector
From the project root:
mcp dev server.pyIf the Inspector does not find uv, use this configuration in the Inspector:
Transport Type: STDIO
Command: python
Arguments: server.pyThen open the Tools tab and run:
{
"topic": "mcp server",
"language": "Python",
"limit": 5,
"min_stars": 10
}Claude Desktop Example
A sample configuration is available in:
examples/claude_desktop_config.example.jsonExample Windows entry:
{
"mcpServers": {
"repo-radar-mcp": {
"command": "C:\\Users\\YOUR_USER\\repo-radar-mcp\\.venv\\Scripts\\python.exe",
"args": [
"C:\\Users\\YOUR_USER\\repo-radar-mcp\\server.py"
]
}
}
}Example Prompts
Search the 5 most popular Python repositories about "mcp server" and explain which one is best to study.Compare these repositories: freqtrade/freqtrade, ccxt/ccxt, hummingbot/hummingbot.Find popular repositories about "rag chatbot" in Python with more than 500 stars and rank them by usefulness.Analyze microsoft/autogen and tell me if it is active, useful and worth studying.More prompts are available in:
examples/prompts.mdRepository Score
Repo Radar MCP includes a simple scoring system based on:
Stars
Forks
Recent activity
License availability
Open issues
Archived status
The score is not meant to replace human judgment. It is a quick signal to help agents and developers prioritize what to inspect first.
Project Structure
repo-radar-mcp/
├── src/
│ └── repo_radar_mcp/
│ ├── __init__.py
│ ├── server.py
│ ├── github_client.py
│ ├── scoring.py
│ ├── formatters.py
│ └── models.py
├── examples/
│ ├── claude_desktop_config.example.json
│ └── prompts.md
├── tests/
│ └── test_scoring.py
├── .env.example
├── .gitignore
├── LICENSE
├── README.md
├── CHANGELOG.md
├── requirements.txt
├── pyproject.toml
└── server.pyRoadmap
Add repository release analysis.
Add issue quality analysis.
Add contributor activity metrics.
Add support for GitHub topics recommendations.
Add repository health report.
Add CSV and JSON export helpers.
Add Docker support.
Add GitHub Actions for tests and linting.
Security
Repo Radar MCP uses a GitHub token from environment variables.
Do not commit:
.envPersonal access tokens
Private API keys
Local virtual environments
The .gitignore file already excludes common sensitive and generated files.
Contributing
Contributions are welcome.
Good first issues:
Improve scoring logic.
Add more output formats.
Add tests.
Improve MCP client examples.
Add Docker support.
License
This project is licensed under the MIT License.
Created by Javier Morrón. Connect with me on LinkedIn: https://www.linkedin.com/in/javiermorron.
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
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/javiermorron/repo-radar-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server