gfi-scout
MCP server that finds beginner-friendly GitHub issues ranked by likelihood of successful contribution, with repo health scoring and issue status checks via the GitHub API.
README
<div align="center">
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.
</div>
<!-- Official MCP Registry identifier — verifies PyPI package ownership. --> 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.
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 complexity - Terminal 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 | uv (all commands go through uv) |
| Auth | Optional — works without a token at 60 req/h; a PAT with public_repo scope (read-only) raises it to 5,000 req/h |
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-tui
Install 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-scout
A 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 |
|---|---|
find_issues |
Repo-first, scored search for beginner-friendly issues |
check_repo_health |
A-F grade for a repository's contributor-friendliness |
check_issue_status |
Is this specific issue actually available to work on? |
get_contribution_guide |
Pulls + summarises CONTRIBUTING.md / README setup |
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-tui
Every 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.10
Every 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 |
|---|---|
docs/SETUP.md |
Step-by-step install, env vars, client wiring |
docs/AGENT_CONNECTIONS.md |
Current MCP connection examples for Codex, Claude Code, Cursor, Antigravity, Pi Agent, and Hermes Agent |
docs/ARCHITECTURE.md |
Layering rules, request flow, caching, failure model |
docs/CLI.md |
Standalone CLI and terminal UI usage |
docs/TOOLS_REFERENCE.md |
Parameters and return schemas for every MCP tool |
docs/SCORING_ALGORITHM.md |
How beginner_score is computed and graded |
CONTRIBUTING.md |
How to file issues and ship PRs |
SECURITY.md |
Responsible-disclosure policy |
docs/CHANGELOG.md |
Release notes |
docs/Plan.md |
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 Inspector
uv.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-scout
If 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.
<div align="center">
Built with frustration, then determination. Because finding your first open source contribution shouldn't require a PhD in "how to navigate GitHub."
</div>
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。