Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables Claude to query GitHub repositories in plain English, fetching recent activity, release notes, issue triage, and health summaries via the GitHub API.

README.md

Repo Recap — GitHub MCP Server for Claude

Ask Claude about any GitHub repository in plain English — it answers using real live data.

![Python](https://www.python.org/) ![MCP](https://modelcontextprotocol.io) ---

What is this?

Repo Recap is an MCP (Model Context Protocol) server that bridges Claude to the GitHub API. Instead of clicking through dozens of GitHub pages, you simply ask Claude a question:

"What happened in vercel/next.js this week?" "Draft release notes for facebook/react from the last 30 days." "Which issues in microsoft/vscode need the most attention?"

Claude calls this server, fetches the data, and hands you a clean, readable answer.

---

Features

| Ask Claude… | Tool called | |---|---| | "Recap owner/repo from the last week" | list_recent_activity | | "Draft release notes for owner/repo" | summarize_pull_requests | | "What open issues need attention?" | triage_issues | | "How healthy is owner/repo?" | get_repo_health |

Also includes:

  • A resource — read any repo's README directly inside Claude
  • A prompt — one-click weekly digest template

---

How it works

You (in Claude)  ──►  Claude  ──►  repo-recap server  ──►  GitHub API
                         │                                      │
   clean summary  ◄──────┴──────  tidied-up data  ◄────────────┘

Claude never talks to GitHub directly. This server is the bridge: it holds your GitHub token securely, calls the API, and converts raw JSON into readable summaries.

---

Prerequisites

---

Setup

1. Clone the repo

git clone https://github.com/YOUR_USERNAME/repo-recap.git
cd repo-recap

2. Install dependencies

pip install -r requirements.txt

Tip: use a virtual environment — python -m venv .venv && source .venv/bin/activate (Mac/Linux) or .venv\Scripts\activate (Windows)

3. Create your .env file

cp .env.example .env

Open .env and paste your GitHub token:

GITHUB_TOKEN=github_pat_your_real_token_here

How to get a token: GitHub → Settings → Developer settings → Fine-grained personal access tokens → New token. Set it to read-only. Required permissions: Contents, Issues, Pull requests, Metadata.

4. Test without Claude (optional but recommended)

mcp dev server.py

This opens the MCP Inspector in your browser — you can click-test every tool before connecting to Claude.

5. Connect to Claude Desktop

Find your Claude Desktop config file:

  • Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Add this block (adjust the path to where you cloned the repo):

{
  "mcpServers": {
    "repo-recap": {
      "command": "python",
      "args": ["C:/FULL/PATH/TO/repo-recap/server.py"]
    }
  }
}

Restart Claude Desktop. A small hammer icon will appear — the tools are live.

---

Usage examples

Weekly recap > "Give me a recap of torvalds/linux from the last 7 days."

Release notes > "Summarize pull requests in astral-sh/uv from the last month and write release notes."

Issue triage > "What are the top 10 open issues in django/django sorted by discussion?"

Health check > "How healthy is supabase/supabase — stars, open PRs, last release?"

Read a README > "Show me the README for anthropics/anthropic-sdk-python."

---

Project structure

repo-recap/
├── server.py          # MCP server — all tools, resource, and prompt live here
├── requirements.txt   # Python dependencies
├── .env.example       # Token template (safe to commit)
├── .env               # Your real token (never committed)
└── .gitignore

---

Built with

---

Contributing

Pull requests are welcome! For major changes, please open an issue first to discuss what you'd like to change.

  1. Fork the repo
  2. Create a feature branch (git checkout -b feature/my-feature)
  3. Commit your changes (git commit -m 'Add my feature')
  4. Push to the branch (git push origin feature/my-feature)
  5. Open a pull request

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Browser & Scraping servers.