github-insight-mcp
Provides comprehensive GitHub repository analysis including stars, forks, activity, contributors, releases, and search capabilities.
Retrieves security advisories and dependency analysis for packages using Google's deps.dev API.
Fetches npm package information including version, downloads, and dependencies.
Fetches PyPI package metadata and download statistics.
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., "@github-insight-mcpAnalyze the expressjs/express repository"
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.
English | 한국어
An MCP server that combines GitHub repository analysis + npm/PyPI package info + deps.dev security advisories into a single research pipeline. No API keys required. One question gives you stars, forks, activity, downloads, dependencies, and security status.
Why This Exists
Before adopting a library or contributing to a project, developers check:
GitHub for stars, activity, and maintenance status
npm/PyPI for version, downloads, and dependencies
deps.dev or Snyk for security vulnerabilities
Repeat for each alternative library
4 sites, 12 tabs, endless context switching. github-insight-mcp does all of this in a single tool call.
Related MCP server: secureaudit-mcp
Demo: analyze_repo Output
You: "Analyze the expressjs/express repository"
Claude calls
analyze_repo(owner="expressjs", repo="express"):
# Repository Analysis: expressjs/express
## Overview
Name: expressjs/express
Description: Fast, unopinionated, minimalist web framework for node.
Language: JavaScript
License: MIT License
Link: https://github.com/expressjs/express
## Stats
Stars: 65,432
Forks: 16,123
Open Issues: 234
Created: 2009-06-26
Last Push: 2026-03-20
## Recent Activity (30 days)
Commits: 12
Issues: 45 (opened: 28, closed: 17)
Pull Requests: 8 (merged: 5, open: 3)
## Top Contributors
1. dougwilson (1,234 commits)
2. tj (567 commits)
...
## Recent Releases
- 4.21.2 (2026-03-15)
- 4.21.1 (2026-02-28)
- 4.21.0 (2026-01-10)Key Features
No API keys required -- Install and use immediately. Optional GitHub token for higher rate limits
GitHub repository analysis -- Stars, forks, activity, contributors, releases at a glance
Repository comparison -- Side-by-side metrics for two repos
npm/PyPI package info -- Version, downloads, dependencies, keywords
Security advisories -- Vulnerability check via Google's deps.dev (Open Source Insights)
Repository search -- Find repos by keywords, sorted by stars/forks/updated
Tools
Tool | Description |
| Main tool. Comprehensive GitHub repository analysis |
| Side-by-side comparison of two repositories |
| Recent commits, issues, and PRs timeline |
| npm or PyPI package info with download stats |
| Security advisories + dependencies via deps.dev |
| Search GitHub repositories |
| Check API availability and rate limits |
Installation
Automatic Setup (Recommended)
git clone https://github.com/wjddusrb03/github-insight-mcp.git
cd github-insight-mcp
pip install -r requirements.txt
python setup_wizard.pyNo API key setup required. Restart Claude Desktop after installation and you're ready to go.
Optional: Set a GitHub Personal Access Token for higher rate limits (60 -> 5,000 requests/hour). The setup wizard will guide you through this.
Manual Setup
1. Install dependencies
git clone https://github.com/wjddusrb03/github-insight-mcp.git
cd github-insight-mcp
pip install -r requirements.txt2. Add to Claude Desktop config
Open your Claude Desktop config file:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonmacOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonLinux:
~/.config/claude/claude_desktop_config.json
Add the following to mcpServers:
{
"mcpServers": {
"github-insight": {
"command": "python",
"args": ["/full/path/to/github-insight-mcp/server.py"]
}
}
}Optional: To use a GitHub token, add an env field:
{
"mcpServers": {
"github-insight": {
"command": "python",
"args": ["/full/path/to/github-insight-mcp/server.py"],
"env": {
"GITHUB_TOKEN": "ghp_your_token_here"
}
}
}
}Restart Claude Desktop.
API Overview
API | Key Required | Features |
GitHub REST API | Optional (free token) | Repository metadata, commits, issues, PRs, contributors, releases, search |
npm Registry | No | Package info, download stats |
PyPI + pypistats.org | No | Package metadata, download stats |
deps.dev (Google) | No | Dependency analysis, security advisories, license info |
All APIs are free. GitHub works without a token (60 req/hr) but a free token gives 5,000 req/hr.
Tool Reference
analyze_repo
The main tool. Fetches repository overview, stats, recent activity, contributors, and releases.
Parameter | Type | Default | Description |
| string | (required) | Repository owner (e.g. 'facebook') |
| string | (required) | Repository name (e.g. 'react') |
compare_repos
Parameter | Type | Default | Description |
| string | (required) | First repo owner |
| string | (required) | First repo name |
| string | (required) | Second repo owner |
| string | (required) | Second repo name |
repo_activity
Parameter | Type | Default | Description |
| string | (required) | Repository owner |
| string | (required) | Repository name |
| int |
| Days to look back |
check_package
Parameter | Type | Default | Description |
| string | (required) | Package name (e.g. 'express', 'requests') |
| string |
|
|
check_security
Parameter | Type | Default | Description |
| string | (required) | Package name |
| string | (required) | Exact version (e.g. '4.17.20') |
| string |
|
|
search_repos
Parameter | Type | Default | Description |
| string | (required) | Search keywords |
| string |
|
|
| int |
| Number of results |
Usage Examples
After installation, just talk to Claude naturally:
Repository analysis:
"Analyze the facebook/react repository"
Compare libraries:
"Compare expressjs/express vs fastify/fastify"
Check activity:
"Show me recent activity for pallets/flask"
Package info:
"Check the express package on npm" "What's the latest version of requests on PyPI?"
Security check:
"Are there any security issues in lodash 4.17.20?"
Search repos:
"Find popular MCP server repositories"
Requirements
Python 3.10+
Claude Desktop (MCP support)
API keys: None required (optional GitHub token for higher rate limits)
Dependencies
Package | Version | Purpose |
| >= 1.0.0 | MCP SDK (FastMCP server framework) |
| >= 0.27.0 | HTTP client for API calls |
| >= 1.0.0 | .env file loading (for optional GitHub token) |
Project Structure
github-insight-mcp/
server.py # MCP server with 7 tools
setup_wizard.py # Interactive setup script
core/
github.py # GitHub REST API client
npm.py # npm Registry API client
pypi.py # PyPI + pypistats client
deps.py # deps.dev (Google) API client
requirements.txt # Python dependencies
pyproject.toml # Package metadata
LICENSE # MIT LicenseIssues & Feedback
Found a bug or have an idea? Please open an issue:
When reporting a bug, please include:
Operating system (Windows / macOS / Linux)
Python version (
python --version)Error message or unexpected behavior
Steps to reproduce
Pull requests are welcome!
License
MIT License. See LICENSE for details.
Stop opening 12 tabs to evaluate a library. Just ask Claude.
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.
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/wjddusrb03/github-insight-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server