Skip to main content
Glama
Akash1070
by Akash1070

🔍 Repo Scout MCP Server

"Vibe Coderとソフトウェアエンジニアのための第一のルール:車輪の再発明はするな。コードを1行も書く前に、AIに既存のGitHubプロジェクトを調査させよう!"

AIアシスタント(Google Antigravity、Claude Desktop、Cursor、Claude Code)が、ゼロから構築を始める前に、既存のオープンソースプロジェクト、ライブラリ、フレームワークをGitHubで検索できるようにする、高性能で無料のローカルModel Context Protocol (MCP) サーバーです。


👤 作者とクレジット

  • 作者: Akash Kumar Jha

  • ライセンス: MIT License(無料・オープンソース)


Related MCP server: GitBridge

🚀 Repo Scout MCPを使う理由

Vibe codingやソフトウェア開発を行う際、開発者は実戦で試された高品質なオープンソースプロジェクトとして既に存在する機能やアプリケーション全体のために、何時間もコードを書いてしまうことがよくあります。

Repo Scout MCP は、AIコーディングアシスタントをGitHubの検索・インテリジェンスAPIに直接接続します:

  • 💡 何百時間もの節約: プロジェクトを始める前に、既存のソリューションを即座に発見。

  • 🆓 100%無料&ローカル: 有料のAPIサブスクリプションは不要。Node.js経由でstdio上でローカルに実行。

  • 高性能: 無料トークンでGitHubのレート制限を60から5,000リクエスト/時に引き上げ。

  • 🛡️ プライバシーとセキュリティ: ハードコードされたキーやトラッキングはゼロ。各ユーザーが自分の環境変数を提供。


🛠️ 含まれるツール

ツール名

説明

使用例

suggest_stack

構築したいものを平易な英語で説明します。複数の角度からGitHub検索(awesome-listsを含む)を実行し、再利用すべきリポジトリのランキング付き候補リストを返します。

"マークダウンノートアプリをタグ付きで作ろうとしています。既存のものがないか確認してください。"

search_repos

キーワード、トピック、言語でGitHubを検索し、スター数、フォーク数、または新着順でソート。

"スター数順にソートされたNode.jsレート制限ミドルウェアを探してください。"

get_repo_details

リポジトリの完全なREADMEとトップレベルのファイル構造を取得し、AIがコードの適合性を評価できるようにします。

"facebook/react の詳細を確認してください。"


📦 クイックスタート&インストール

ステップ1: リポジトリをクローン

git clone https://github.com/YOUR_USERNAME/repo-scout-mcp.git
cd repo-scout-mcp
npm install

ステップ2: 無料のGitHubアクセストークンを取得(2分)

  1. GitHub Settings -> Tokens に移動。

  2. Generate new token $\rightarrow$ Generate new token (classic) をクリック。

  3. 名前を repo-scout-mcp に設定。

  4. すべてのスコープチェックボックスはオフのまま(公開データ検索には権限は不要)。

  5. Generate token をクリックしてコピー(ghp_xxxxxxxxxxxx のような形式)。


🔌 AIアシスタントへの接続

1. Google Antigravity

  1. Antigravityを開く $\rightarrow$ エージェントパネル右上の ... メニューをクリック。

  2. MCP Servers $\rightarrow$ Manage MCP Servers $\rightarrow$ View raw configmcp_config.json)に移動。

  3. "mcpServers" 内に次のエントリを追加:

{
  "mcpServers": {
    "repo-scout": {
      "command": "node",
      "args": ["G:\\CODE\\repo-scout-mcp\\index.js"],
      "env": {
        "GITHUB_TOKEN": "ghp_your_personal_access_token_here"
      }
    }
  }
}

(注:G:\\CODE\\repo-scout-mcp\\index.js を実際の完全なファイルパスに置き換えてください。Windowsでは二重バックスラッシュを使用)。

  1. mcp_config.json を保存し、MCPサーバーを更新(またはチャットで /mcp と入力)。


2. Claude Desktop

claude_desktop_config.json に追加:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "repo-scout": {
      "command": "node",
      "args": ["/absolute/path/to/repo-scout-mcp/index.js"],
      "env": {
        "GITHUB_TOKEN": "ghp_your_personal_access_token_here"
      }
    }
  }
}

3. Claude Code CLI

実行:

claude mcp add repo-scout node /absolute/path/to/repo-scout-mcp/index.js -e GITHUB_TOKEN=ghp_your_token_here

💬 試してみるプロンプト例

接続後、AIアシスタントに以下のようにプロンプトを送るだけです:

  • プロジェクトを始める前に:

    "Dockerコンテナを監視するセルフホスト型ダッシュボードを構築しようとしています。repo-scoutを使って、優れたオープンソースプロジェクトが既に存在するか確認してください。"

  • ライブラリを検索する:

    "repo-scoutを使って、高スターのTypeScript金融テクニカル指標パッケージを検索してください。"

  • リポジトリを評価する:

    "repo-scout get_repo_details を shadcn/ui に対して使用し、その構造を要約してください。"


📄 ライセンス

Akash Kumar Jha によって作成されました。MIT License の下で公開されています。

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI assistants to analyze GitHub repository structures and read file contents with features like directory traversal, file type analysis, syntax highlighting, and code pattern detection. Supports both public and private repositories through GitHub API integration.
    11
    Apache 2.0
  • A
    license
    A
    quality
    C
    maintenance
    Enables AI agents to prospect across GitHub, PyPI, and npm, searching repositories, packages, and code patterns with read-only tools.
    7
    3
    MIT
  • F
    license
    Not graded
    quality
    B
    maintenance
    Enables AI assistants to discover and interact with GitHub repositories through standardized MCP tools, allowing exploration and retrieval of project information without direct API calls.

View all related MCP servers

Related MCP Connectors

  • Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.

  • Screens public GitHub repos and PRs to generate risk maps, findings, and merge-readiness signals.

  • Connect AI assistants to your GitHub-hosted Obsidian vault to seamlessly access, search, and analy…

View all MCP Connectors

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/Akash1070/repo-scout-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server