# GitHub (npm · @abhishekmcp/github)

GitHub via MCP: search, repos, issues, PRs, files, notifications. OAuth device flow or token.

- Trust score: 76/100 (medium)
- Change this week: +52
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@abhishekmcp/github`: 76/100 (this document), [markdown](https://verifymcp.io/servers/abhishekkumar2021-github/abhishekmcp-github.md), [page](https://verifymcp.io/servers/abhishekkumar2021-github/abhishekmcp-github)

## Channel facts

- Registry: `npm`
- Package: `@abhishekmcp/github`
- Version: `0.2.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (115 of 119), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (115 of 119), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to Abhishekkumar2021/mcp-suite).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 35 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 66/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 664 tokens (~41/item across 16 items; 16 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 85/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 54% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add abhishekkumar2021-github -- npx -y @abhishekmcp/github
```

### Codex

```bash
codex mcp add abhishekkumar2021-github -- npx -y @abhishekmcp/github
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "abhishekkumar2021-github": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@abhishekmcp/github"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add abhishekkumar2021-github --command npx --arg -y --arg @abhishekmcp/github
```

### Hermes

```yaml
mcp_servers:
  abhishekkumar2021-github:
    command: "npx"
    args: ["-y", "@abhishekmcp/github"]
```

### Other

```json
{
  "mcpServers": {
    "abhishekkumar2021-github": {
      "command": "npx",
      "args": [
        "-y",
        "@abhishekmcp/github"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 76, +71)

- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Provenance: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [security] The attested source repository moved: Abhishekkumar2021/mcp-suite
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional] Licence: MIT

### 2026-08-01 (score 5, −2)

- [functional regression] Dependency health: partial → unverified

### 2026-07-31 (score 7, −17)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 24, −20)

- [functional regression] Tool coverage: 100 → unverified

### 2026-07-28 (score 44, +20)

- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: fail
- [functional] First check of Tool coverage: 54
- [functional] First check of Schema quality: unverified
- [functional] First check of Schema quality: pass

### 2026-07-27 (score 24)

First indexed and scored.

## MCP tools (16)

### `github_login` (~44 tokens)

Log in to GitHub

Authenticate via GitHub OAuth device flow. First call returns a code + URL to open; run it again after authorizing to finish. (Or set GITHUB_TOKEN to skip.)

### `github_logout` (~15 tokens)

Log out

Clear the cached GitHub token.

### `whoami` (~22 tokens)

Who am I

Show the authenticated GitHub user (and how the token was obtained).

### `search_repos` (~33 tokens)

Search repositories

Search GitHub repositories (GitHub search syntax).

Input parameters:

- `limit` (integer)
- `query` (string, required)

### `search_code` (~40 tokens)

Search code

Search code across GitHub (e.g. 'addEventListener repo:owner/name').

Input parameters:

- `limit` (integer)
- `query` (string, required)

### `search_issues` (~34 tokens)

Search issues/PRs

Search issues and pull requests (GitHub search syntax).

Input parameters:

- `limit` (integer)
- `query` (string, required)

### `get_repo` (~42 tokens)

Get repository

Repository metadata (stars, language, default branch, license).

Input parameters:

- `owner` (string, required): Repository owner (user or org)
- `repo` (string, required): Repository name

### `list_issues` (~62 tokens)

List issues

List a repo's issues (excludes PRs).

Input parameters:

- `limit` (integer)
- `owner` (string, required): Repository owner (user or org)
- `repo` (string, required): Repository name
- `state` (string): Filter by state (default open)

### `get_issue` (~46 tokens)

Get issue

An issue's details plus its first comments.

Input parameters:

- `number` (integer, required)
- `owner` (string, required): Repository owner (user or org)
- `repo` (string, required): Repository name

### `list_pull_requests` (~58 tokens)

List pull requests

List a repo's pull requests.

Input parameters:

- `limit` (integer)
- `owner` (string, required): Repository owner (user or org)
- `repo` (string, required): Repository name
- `state` (string): Filter by state (default open)

### `get_pull_request` (~51 tokens)

Get pull request

A PR's details (diff stats, merged state, body).

Input parameters:

- `number` (integer, required)
- `owner` (string, required): Repository owner (user or org)
- `repo` (string, required): Repository name

### `get_file_contents` (~71 tokens)

Get file contents

Read a file (decoded) or list a directory in a repo, at an optional ref.

Input parameters:

- `owner` (string, required): Repository owner (user or org)
- `path` (string, required)
- `ref` (string): Branch, tag, or commit SHA
- `repo` (string, required): Repository name

### `list_notifications` (~21 tokens)

List notifications

Your unread GitHub notifications.

Input parameters:

- `limit` (integer)

### `rate_limit` (~18 tokens)

Rate limit

Your remaining GitHub API requests and reset time.

### `create_issue` (~52 tokens)

Create issue

Open a new issue in a repository.

Input parameters:

- `body` (string)
- `owner` (string, required): Repository owner (user or org)
- `repo` (string, required): Repository name
- `title` (string, required)

### `add_issue_comment` (~55 tokens)

Comment on issue

Add a comment to an issue or pull request.

Input parameters:

- `body` (string, required)
- `number` (integer, required)
- `owner` (string, required): Repository owner (user or org)
- `repo` (string, required): Repository name

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/abhishekkumar2021-github/abhishekmcp-github#diagnostics

## Score history

- 2026-08-03: 76
- 2026-08-02: 76
- 2026-08-01: 5
- 2026-07-31: 7
- 2026-07-30: 24
- 2026-07-28: 44
- 2026-07-27: 24

## Links

- npm package: https://www.npmjs.com/package/@abhishekmcp/github
- Socket report: https://socket.dev/npm/package/@abhishekmcp/github
- Repository: https://github.com/Abhishekkumar2021/mcp-suite
- Website: https://github.com/Abhishekkumar2021/mcp-suite/tree/main/servers/github#readme
- Changelog RSS feed: https://verifymcp.io/servers/abhishekkumar2021-github/abhishekmcp-github/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/abhishekkumar2021-github/abhishekmcp-github/changelog.json
- HTML version of this page: https://verifymcp.io/servers/abhishekkumar2021-github/abhishekmcp-github
