Sandbox
@wham/github-brain

GitHub MCP server with local database

GitHub Brain is an MCP server that pulls GitHub discussions, issues, and pull requests into a local database. That lets an agent answer summary questions quickly, beyond the usual API item limits, and return Markdown that is easier to read in chat.

78 stars19 forksGoUpdated 6mo ago
Who it's for

People who want their agent to query GitHub history from a local cache instead of re-reading the API each time.

What it delivers

You can ask for summaries and contribution breakdowns over GitHub activity without re-explaining the same context or waiting on repeated API calls.

What it does

Local GitHub database

Pulls GitHub data into a local store so later questions are answered from disk instead of live API calls.

Discussion, issue, and pull request summaries

Answers questions about contributions and monthly activity across GitHub discussions, issues, and pull requests.

MCP server mode

Runs as an MCP server with `github-brain mcp` so Claude or other MCP clients can connect to it.

Interactive setup and pull flow

Starts a TUI for login, config editing, and database population before serving requests.

How to get it

  1. 1Run
    npm i -g github-brain
  2. 2Alternatively use npx to run without installing globally and needing sudo.
    npx github-brain@latest
  3. 3Run
    github-brain
  4. 4Or with npx
    npx github-brain@latest
  5. 5The app loads environment variables from a .env file in the GitHub Brain's home…
    GITHUB_TOKEN=your_github_token
    ORGANIZATION=my-org

README

GitHub Brain Logo

GitHub Brain MCP Server

GitHub Brain is an experimental MCP server for summarizing GitHub discussions, issues, and pull requests. Answer questions like:

  • What are the contributions of user X in the last month?
  • Summarize this month's discussions.

https://github.com/user-attachments/assets/80910025-9d58-4367-af00-bf4c51e6ce86

GitHub Brain complements (but does not replace) the official GitHub MCP server. It stores GitHub data in a local database for:

  • Fast responses
  • More than the standard 100-item API limit
  • Token-efficient Markdown output

GitHub Brain is programmed in Markdown.

Installation

npm i -g github-brain

Rerun to update. sudo may be required on some systems.

Alternatively use npx to run without installing globally and needing sudo.

npx github-brain@latest

Usage

github-brain

Or with npx:

npx github-brain@latest

Launches the interactive TUI where you can:

  1. Setup - Configure authentication and settings
    • Login with GitHub (OAuth) - Recommended for most users
    • Login with Personal Access Token - For fine-grained tokens or when OAuth is unavailable
    • Open configuration file - Edit .env directly
  2. Pull - Populate the local database with GitHub data

Re-run pull anytime to update the database with new GitHub data.

The app loads environment variables from a .env file in the GitHub Brain's home directory - ~/.github-brain by default.

Example .env file
GITHUB_TOKEN=your_github_token
ORGANIZATION=my-org
ArgumentDescription
-mHome directory. Default: ~/.github-brain
Personal access token scopes
Use [fine-grained personal access tokens](https://github.com/settings/personal-access-tokens).

**Private organizations:** Token needs read access to discussions, issues, metadata, and pull requests. [Generate token](https://github.com/settings/personal-access-tokens/new?name=github-brain&description=http%3A%2F%2Fgithub.com%2Fwham%2Fgithub-brain&issues=read&pull_requests=read&discussions=read).

**Public organizations:** Any token works (data is publicly accessible).

MCP Server

Start the MCP server using the local database:

github-brain mcp

Or with npx:

npx github-brain@latest mcp
ArgumentVariableDescription
-oORGANIZATIONGitHub organization. Required.
-mHome directory. Default: ~/.github-brain

MCP Configuration

Claude

Add to the Claude MCP configuration file:

{
  "mcpServers": {
    "github-brain": {
      "type": "stdio",
      "command": "github-brain",
      "args": ["mcp"]
    }
}

Or with npx:

{
  "mcpServers": {
    "github-brain": {
      "type": "stdio",
      "command": "npx",
      "args": ["github-brain@latest", "mcp"]
    }
}

Merge with existing mcpServers if present.

VS Code

Add to the VS Code MCP configuration file:

{
  "servers": {
    "github-brain": {
      "type": "stdio",
      "command": "github-brain",
      "args": ["mcp"],
      "version": "0.0.1"
    }
  }
}

Or with npx:

{
  "servers": {
    "github-brain": {
      "type": "stdio",
      "command": "npx",
      "args": ["github-brain@latest", "mcp"],
      "version": "0.0.1"
    }
  }
}

Merge with existing servers if present.

Development

scripts/run builds and runs github-brain with the checkout directory as home -m (database in db/, config in .env).

Files in the repo

Repository payload18 top-level entries
  • .github
  • .vscode
  • bin
  • docs
  • npm
  • scripts
  • .gitignore
  • AGENTS.md
  • config.json
  • go.mod
  • go.sum
  • install.js
  • LICENSE
  • logo.svg
  • main.go
  • main.md
  • package.json
  • README.md

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More connectors

Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface

86k

High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph — average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.

43k

Universal provider proxy for OpenAI Codex & Claude Code — use any LLM (Claude, Gemini, Grok, DeepSeek, Ollama…) with Codex CLI, App, SDK, and Claude Code

14k
okf-memory/
okf-agent-memory

Git-native persistent memory for AI coding agents. Implements Google OKF v0.2 with sub-300µs in-memory BM25 search, embedded MCP server, and progressive disclosure. Slashes token bloat by 80% with zero external databases or dependencies. Built in pure Go.

547
tirth8205/
code-review-graph

Local-first code intelligence graph for MCP and CLI. Builds a persistent map of your codebase so AI coding tools read only what matters, with benchmarked context reductions on reviews and large-repo workflows.

31k
2akouwu/
reverify

Stop your AI from making things up — it proposes, deterministic tools decide, every claim checked against ground truth with evidence. Grounded facts and context survive resets. Reverse engineering is the proving ground. MCP server + CLI.

1.1k