gfi-scout
Allows searching for beginner-friendly GitHub issues, checking repository health, verifying issue availability, and retrieving contribution guides from GitHub repositories.
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., "@gfi-scoutFind me Python good first issues in repos with at least 500 stars"
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.
GFI Scout

An MCP server and standalone CLI that finds open source issues where beginners actually succeed β not just any issue tagged good first issue.
mcp-name: io.github.Rajveerx11/gfi-scout
Why this exists
Most "good first issue" finders are glorified GitHub search wrappers. They happily hand you issues from abandoned repos, issues already claimed by three other contributors, and issues maintainers will never review.
GFI Scout ranks results by likelihood of success β repo health, merge rate, maintainer responsiveness, issue freshness, and setup complexity all feed a composite beginner_score (0-100). The dead repos sink to the bottom.
It ships as a Model Context Protocol server, plus a standalone CLI/TUI for terminal-first workflows.
Related MCP server: github-talent-mcp
Features
π
find_issuesβ repo-first language + topic + star-range discovery with scored issue resultsπ©Ί
check_repo_healthβ merge rate, last commit, CONTRIBUTING/CoC/CI probes β A-F gradeβ±οΈ
check_issue_statusβ assignment, linked PRs, staleness, maintainer confirmation βAVAILABLE/LIKELY_TAKEN/STALEverdictπ
get_contribution_guideβ pulls and summarisesCONTRIBUTING.md, detects toolchain, estimates setup complexityTerminal commands via
gfi-scout-cliand an interactivegfi-scout-tuiβ‘ Parallel GitHub API fan-out (
asyncio.gather) + per-namespace TTL cache for repository search, issue listing, and repo-health probesποΈ All scoring weights and thresholds live in
src/gfi_scout/data/scoring_weights.jsonβ no magic numbers in codeπ§ͺ 100+ tests (unit + integration),
mypy --strictclean,ruffclean
Requirements
Python | 3.12+ |
Package manager |
|
Auth | Optional β works without a token at 60 req/h; a PAT with |
Quick start
# Clone
git clone https://github.com/Rajveerx11/gfi-scout.git
cd gfi-scout
# Install uv (skip if you have it)
# macOS / Linux: curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows (PowerShell): irm https://astral.sh/uv/install.ps1 | iex
# Install dependencies (creates .venv automatically)
uv sync
# Optional: add a GitHub token (60 req/h without one, 5,000 req/h with)
cp .env.example .env
# edit .env and paste your GitHub token
# Run the MCP server (stdio transport)
uv run gfi-scout
# Or expose a local Streamable HTTP MCP endpoint
uv run gfi-scout --transport streamable-http --host 127.0.0.1 --port 8000
# Or use the standalone CLI/TUI
uv run gfi-scout-cli find python --min-stars 500
uv run gfi-scout-tuiInstall as a global uv tool
If you only want to run the MCP server / CLI and don't plan to hack on the code, install it once as a global tool. No checkout, no venv to keep around:
# Install (or update) directly from GitHub
uv tool install --force --from git+https://github.com/Rajveerx11/gfi-scout gfi-scout
# Then the binaries are on $PATH:
gfi-scout # MCP server (stdio)
gfi-scout-cli find python --min-stars 500
gfi-scout-tui
# Upgrade later:
uv tool install --force --from git+https://github.com/Rajveerx11/gfi-scout gfi-scoutA GITHUB_TOKEN in the environment (or a .env in the directory you run from) is optional β without one you run at GitHub's unauthenticated 60 requests/hour limit.
Connecting to an MCP client
Claude Desktop
Add this to claude_desktop_config.json:
{
"mcpServers": {
"gfi-scout": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/gfi-scout", "gfi-scout"],
"env": {
"GITHUB_TOKEN": "ghp_your_token_here"
}
}
}
}Restart Claude Desktop, then try:
"Find me Python good first issues with at least 500 stars."
"Is this issue actually available? https://github.com/fastapi/fastapi/issues/12345"
"What's the setup complexity for
pallets/flask?"
Other clients
Cursor, Windsurf, and VS Code Copilot each support MCP servers β point them at the same uv run command. Detailed steps in docs/SETUP.md.
MCP tools
Tool | What it does |
Repo-first, scored search for beginner-friendly issues | |
A-F grade for a repository's contributor-friendliness | |
Is this specific issue actually available to work on? | |
Pulls + summarises |
See docs/TOOLS_REFERENCE.md for full parameter and return-shape specs.
CLI and TUI
uv run gfi-scout-cli find python --min-stars 500 --max-results 10
uv run gfi-scout-cli health fastapi/fastapi
uv run gfi-scout-cli status https://github.com/fastapi/fastapi/issues/12345
uv run gfi-scout-cli guide pallets/flask
uv run gfi-scout-tuiEvery command supports --output json for scripts. See docs/CLI.md.
How scoring works
beginner_score = repo_health Γ 0.30
+ issue_freshness Γ 0.20
+ issue_clarity Γ 0.15
+ merge_friendliness Γ 0.25
+ setup_complexity_inv Γ 0.10Every weight and threshold is loaded from src/gfi_scout/data/scoring_weights.json. Want to retune the ranker? Edit the JSON and re-run β no code changes.
Full breakdown in docs/SCORING_ALGORITHM.md.
Documentation
Doc | What's in it |
Step-by-step install, env vars, client wiring | |
Current MCP connection examples for Codex, Claude Code, Cursor, Antigravity, Pi Agent, and Hermes Agent | |
Layering rules, request flow, caching, failure model | |
Standalone CLI and terminal UI usage | |
Parameters and return schemas for every MCP tool | |
How | |
How to file issues and ship PRs | |
Responsible-disclosure policy | |
Release notes | |
Original spec + phase plan |
Development
uv sync # install everything
uv run pytest # 106 tests in ~2 s
uv run ruff check src/ tests/ # lint
uv run ruff format src/ tests/ # format
uv run mypy src/ # strict type-check
uv run mcp dev src/gfi_scout/server.py # MCP Inspectoruv.lock is committed β every contributor gets identical dependency versions.
Project layout
src/gfi_scout/
βββ server.py # FastMCP entry, tool registration
βββ cli.py # Standalone CLI + terminal UI
βββ config.py # Env loading
βββ runtime.py # Shared cache/client wiring
βββ tools/ # One file per MCP tool
β βββ find_issues.py
β βββ check_repo_health.py
β βββ check_issue_status.py
β βββ get_contribution_guide.py
βββ services/ # GitHub client, scoring, cache
βββ models/ # Pydantic models
βββ utils/ # Pure helpers (validators, rate limiter, logger)
tests/ # mirrors src/ layout
docs/ # markdown docs
scripts/ # dev automation (setup.sh, seed_cache.py)The scoring config lives inside the package at
src/gfi_scout/data/scoring_weights.jsonso it ships with the installed wheel β no separate top-levelconfig/directory. (The runtime settings modulegfi_scout/config.pyis unrelated;data/holds JSON,config.pyreads env vars.)
Layer rules and folder contracts: docs/ARCHITECTURE.md.
Troubleshooting
scoring config not found: .../Lib/config/scoring_weights.json
You're on an old install (β€ v0.1.0) where the scoring config wasn't bundled into the wheel. Fix:
uv tool install --force --from git+https://github.com/Rajveerx11/gfi-scout gfi-scoutIf a long-running MCP server process holds the install directory open on Windows (Access is denied during reinstall), stop the host (Claude Desktop / Claude Code / Cursor) or kill the gfi-scout Python process first, then re-run the command.
Results are slow or you hit rate limit exceeded quickly
You're probably running without a token (60 requests/hour). Set GITHUB_TOKEN β from the environment or a .env file in the working directory β to get 5,000 requests/hour. For uv tool installs, either export it in your shell profile or set it in the MCP client's env block (see Connecting to an MCP client above).
Contributing
Issues and PRs welcome β practising what we preach. Start at CONTRIBUTING.md. Good first issues are labelled on the tracker.
By participating you agree to the Code of Conduct.
Security
Found a security issue? Please don't open a public issue β see SECURITY.md for the disclosure process.
GFI Scout only ever needs public_repo (read-only) scope on your GitHub token.
License
MIT β because the whole point is helping people contribute to open source.
Built with frustration, then determination. Because finding your first open source contribution shouldn't require a PhD in "how to navigate GitHub."
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.
Related MCP Servers
- AlicenseAqualityBmaintenanceAn MCP server that scouts truly beginner-friendly open-source issues from GitHub, checking availability and summarizing them for AI consumption.Last updated179MIT
- AlicenseAqualityCmaintenanceMCP server that searches, scores, and ranks GitHub developers for technical recruiting.Last updated83Apache 2.0
- Flicense-qualityDmaintenanceMCP server for automated GitHub repository quality management, enabling review, README generation, cleanup, and monitoring.Last updated
- Alicense-qualityCmaintenanceAn MCP server that enables GitHub API operations such as managing repositories, issues, and pull requests through natural language.Last updated500ISC
Related MCP Connectors
An MCP server that gives your AI access to the source code and docs of all public github repos
A MCP server built for developers enabling Git based project management with project and personalβ¦
MCP server aggregating developer infrastructure deals, free tiers, and startup programs
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/Rajveerx11/gfi-scout'
If you have feedback or need assistance with the MCP directory API, please join our Discord server